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:
authorSergey Sharybin <sergey@blender.org>2020-08-04 15:25:13 +0300
committerSergey Sharybin <sergey@blender.org>2020-08-04 15:25:13 +0300
commit7fbbe719226cec2f5eec98bea69b5a4807df550b (patch)
tree7d3d4bdec7e7f09411169a1b4e548c223c26f5e6 /source/blender/depsgraph
parent5f621a12c6d14d6ec0439992bc0c2590a2bd4760 (diff)
Depsgraph: Fix wrong forward declarations
Diffstat (limited to 'source/blender/depsgraph')
-rw-r--r--source/blender/depsgraph/intern/builder/pipeline.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/source/blender/depsgraph/intern/builder/pipeline.h b/source/blender/depsgraph/intern/builder/pipeline.h
index 05b1f46f174..2c9c78bb2cb 100644
--- a/source/blender/depsgraph/intern/builder/pipeline.h
+++ b/source/blender/depsgraph/intern/builder/pipeline.h
@@ -27,9 +27,9 @@
#include "intern/depsgraph_type.h"
-class Main;
-class Scene;
-class ViewLayer;
+struct Main;
+struct Scene;
+struct ViewLayer;
struct Depsgraph;
namespace blender {