[Bf-blender-cvs] [a0364a62270] functions: rename files for consistency

Jacques Lucke noreply at git.blender.org
Mon Aug 5 18:19:08 CEST 2019


Commit: a0364a62270510b3f2aebde64ad6b3d9fafc162c
Author: Jacques Lucke
Date:   Mon Aug 5 18:18:59 2019 +0200
Branches: functions
https://developer.blender.org/rBa0364a62270510b3f2aebde64ad6b3d9fafc162c

rename files for consistency

===================================================================

M	source/blender/functions/CMakeLists.txt
M	source/blender/functions/FN_llvm.hpp
M	source/blender/functions/FN_tuple.hpp
R099	source/blender/functions/backends/llvm/llvm_types.cpp	source/blender/functions/backends/llvm/llvm_type_info.cpp
R100	source/blender/functions/backends/llvm/llvm_types.hpp	source/blender/functions/backends/llvm/llvm_type_info.hpp
R056	source/blender/functions/backends/tuple/cpp_types.cpp	source/blender/functions/backends/tuple/cpp_type_info.cpp
R100	source/blender/functions/backends/tuple/cpp_types.hpp	source/blender/functions/backends/tuple/cpp_type_info.hpp
M	source/blender/functions/backends/tuple/tuple.hpp

===================================================================

diff --git a/source/blender/functions/CMakeLists.txt b/source/blender/functions/CMakeLists.txt
index 81afa35f9da..99c73c4621a 100644
--- a/source/blender/functions/CMakeLists.txt
+++ b/source/blender/functions/CMakeLists.txt
@@ -54,8 +54,8 @@ set(SRC
   core/core-c.h
   core/core-c.cpp
 
-  backends/tuple/cpp_types.hpp
-  backends/tuple/cpp_types.cpp
+  backends/tuple/cpp_type_info.hpp
+  backends/tuple/cpp_type_info.cpp
   backends/tuple/tuple.hpp
   backends/tuple/tuple.cpp
   backends/tuple/tuple-c.h
@@ -81,8 +81,8 @@ set(SRC
 
   backends/llvm/initialize.hpp
   backends/llvm/initialize.cpp
-  backends/llvm/llvm_types.hpp
-  backends/llvm/llvm_types.cpp
+  backends/llvm/llvm_type_info.hpp
+  backends/llvm/llvm_type_info.cpp
   backends/llvm/build_ir_body.hpp
   backends/llvm/build_ir_body.cpp
   backends/llvm/ir_to_tuple_call.hpp
diff --git a/source/blender/functions/FN_llvm.hpp b/source/blender/functions/FN_llvm.hpp
index a03699251cd..d076c0b2647 100644
--- a/source/blender/functions/FN_llvm.hpp
+++ b/source/blender/functions/FN_llvm.hpp
@@ -1,7 +1,7 @@
 #pragma once
 
 #include "backends/llvm/initialize.hpp"
-#include "backends/llvm/llvm_types.hpp"
+#include "backends/llvm/llvm_type_info.hpp"
 #include "backends/llvm/build_ir_body.hpp"
 #include "backends/llvm/ir_to_tuple_call.hpp"
 #include "backends/llvm/ir_for_tuple_call.hpp"
diff --git a/source/blender/functions/FN_tuple.hpp b/source/blender/functions/FN_tuple.hpp
index 7ae251033e4..f070347c1b0 100644
--- a/source/blender/functions/FN_tuple.hpp
+++ b/source/blender/functions/FN_tuple.hpp
@@ -1,5 +1,5 @@
 #pragma once
 
 #include "FN_tuple-c.h"
-#include "backends/tuple/cpp_types.hpp"
+#include "backends/tuple/cpp_type_info.hpp"
 #include "backends/tuple/tuple.hpp"
diff --git a/source/blender/functions/backends/llvm/llvm_types.cpp b/source/blender/functions/backends/llvm/llvm_type_info.cpp
similarity index 99%
rename from source/blender/functions/backends/llvm/llvm_types.cpp
rename to source/blender/functions/backends/llvm/llvm_type_info.cpp
index 93d01c71394..ea7dda1d130 100644
--- a/source/blender/functions/backends/llvm/llvm_types.cpp
+++ b/source/blender/functions/backends/llvm/llvm_type_info.cpp
@@ -1,4 +1,4 @@
-#include "llvm_types.hpp"
+#include "llvm_type_info.hpp"
 
 namespace FN {
 
diff --git a/source/blender/functions/backends/llvm/llvm_types.hpp b/source/blender/functions/backends/llvm/llvm_type_info.hpp
similarity index 100%
rename from source/blender/functions/backends/llvm/llvm_types.hpp
rename to source/blender/functions/backends/llvm/llvm_type_info.hpp
diff --git a/source/blender/functions/backends/tuple/cpp_types.cpp b/source/blender/functions/backends/tuple/cpp_type_info.cpp
similarity index 56%
rename from source/blender/functions/backends/tuple/cpp_types.cpp
rename to source/blender/functions/backends/tuple/cpp_type_info.cpp
index 603be895c6f..0a0a0bf7df5 100644
--- a/source/blender/functions/backends/tuple/cpp_types.cpp
+++ b/source/blender/functions/backends/tuple/cpp_type_info.cpp
@@ -1,4 +1,4 @@
-#include "cpp_types.hpp"
+#include "cpp_type_info.hpp"
 
 namespace FN {
 
diff --git a/source/blender/functions/backends/tuple/cpp_types.hpp b/source/blender/functions/backends/tuple/cpp_type_info.hpp
similarity index 100%
rename from source/blender/functions/backends/tuple/cpp_types.hpp
rename to source/blender/functions/backends/tuple/cpp_type_info.hpp
diff --git a/source/blender/functions/backends/tuple/tuple.hpp b/source/blender/functions/backends/tuple/tuple.hpp
index f372c8f41f5..c39b47cb580 100644
--- a/source/blender/functions/backends/tuple/tuple.hpp
+++ b/source/blender/functions/backends/tuple/tuple.hpp
@@ -31,7 +31,7 @@
  *       that case, this information can be used to increase performance and to get a nicer API.
  */
 
-#include "cpp_types.hpp"
+#include "cpp_type_info.hpp"
 
 namespace FN {



More information about the Bf-blender-cvs mailing list