Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'source/blender/freestyle/intern/scene_graph/SceneVisitor.h')
-rw-r--r--source/blender/freestyle/intern/scene_graph/SceneVisitor.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/source/blender/freestyle/intern/scene_graph/SceneVisitor.h b/source/blender/freestyle/intern/scene_graph/SceneVisitor.h
index d1b64663ca9..81a478e8cf3 100644
--- a/source/blender/freestyle/intern/scene_graph/SceneVisitor.h
+++ b/source/blender/freestyle/intern/scene_graph/SceneVisitor.h
@@ -41,12 +41,12 @@ namespace Freestyle {
{ \
}
-#define VISIT_DECL(type) virtual void visit##type(type &);
+#define VISIT_DECL(type) virtual void visit##type(type &)
#define VISIT_COMPLETE_DECL(type) \
virtual void visit##type##Before(type &); \
virtual void visit##type(type &); \
- virtual void visit##type##After(type &);
+ virtual void visit##type##After(type &)
class Node;
class NodeShape;