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:
authorJacques Lucke <jacques@blender.org>2021-03-21 17:33:30 +0300
committerJacques Lucke <jacques@blender.org>2021-03-21 17:33:30 +0300
commit2ddbb2c64f00f1ba357fe41813523088a9215326 (patch)
treeab1e86876906856bbcd0ee3a91dc06ef6facd834 /source/blender/functions/tests
parent9e437aabdb3d14c32584afb4bfa9e6eb35f06e51 (diff)
Functions: move CPPType creation related code to separate header
This does not need to be included everywhere, because it is only needed in very few translation units that actually define CPPType's.
Diffstat (limited to 'source/blender/functions/tests')
-rw-r--r--source/blender/functions/tests/FN_cpp_type_test.cc1
1 files changed, 1 insertions, 0 deletions
diff --git a/source/blender/functions/tests/FN_cpp_type_test.cc b/source/blender/functions/tests/FN_cpp_type_test.cc
index 479526b5e3a..3f92d2e1ac6 100644
--- a/source/blender/functions/tests/FN_cpp_type_test.cc
+++ b/source/blender/functions/tests/FN_cpp_type_test.cc
@@ -3,6 +3,7 @@
#include "testing/testing.h"
#include "FN_cpp_type.hh"
+#include "FN_cpp_type_make.hh"
namespace blender::fn::tests {