Browse Source

scene: fix a pretty verbose compilation warning.

undefined
Sam Hocevar 9 years ago
parent
commit
732ba3802b
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      src/scene.h

+ 1
- 1
src/scene.h View File

@@ -49,7 +49,7 @@ class PrimitiveSettings
public:
PrimitiveSettings() { }
virtual ~PrimitiveSettings() { }
virtual void ApplyTo(Primitive* primitive) const { }
virtual void ApplyTo(Primitive* primitive) const { UNUSED(primitive); }

private:
};


Loading…
Cancel
Save