[Bf-blender-cvs] [54350b7db2c] functions: change .hpp to .h

Jacques Lucke noreply at git.blender.org
Thu Sep 12 13:21:09 CEST 2019


Commit: 54350b7db2cd63390edd0aa47350484e390d1126
Author: Jacques Lucke
Date:   Thu Sep 12 12:23:42 2019 +0200
Branches: functions
https://developer.blender.org/rB54350b7db2cd63390edd0aa47350484e390d1126

change .hpp to .h

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

M	source/blender/blenkernel/BKE_attributes_ref.hpp
M	source/blender/blenkernel/BKE_node_tree.hpp
M	source/blender/blenlib/BLI_chained_strings.hpp
M	source/blender/blenlib/BLI_monotonic_allocator.hpp
M	source/blender/blenlib/BLI_multi_map.hpp
M	source/blender/blenlib/BLI_multi_vector.hpp
M	source/blender/blenlib/BLI_set.hpp
M	source/blender/blenlib/BLI_set_vector.hpp
M	source/blender/blenlib/BLI_stack.hpp
M	source/blender/blenlib/BLI_string_map.hpp
R100	source/blender/blenlib/BLI_vector.hpp	source/blender/blenlib/BLI_vector.h
M	source/blender/blenlib/CMakeLists.txt
M	source/blender/blenlib/intern/BLI_index_range.cpp
M	tests/gtests/blenlib/BLI_array_ref_test.cc
M	tests/gtests/blenlib/BLI_chunked_range_test.cc
M	tests/gtests/blenlib/BLI_index_range_test.cc
M	tests/gtests/blenlib/BLI_string_map_test.cc
M	tests/gtests/blenlib/BLI_string_ref_test.cc
M	tests/gtests/blenlib/BLI_vector_test.cc

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

diff --git a/source/blender/blenkernel/BKE_attributes_ref.hpp b/source/blender/blenkernel/BKE_attributes_ref.hpp
index 16cef242e61..c7c29061ae0 100644
--- a/source/blender/blenkernel/BKE_attributes_ref.hpp
+++ b/source/blender/blenkernel/BKE_attributes_ref.hpp
@@ -36,7 +36,7 @@
 #include "BLI_set.hpp"
 #include "BLI_string_map.hpp"
 #include "BLI_string_ref.hpp"
-#include "BLI_vector.hpp"
+#include "BLI_vector.h"
 
 namespace BKE {
 
diff --git a/source/blender/blenkernel/BKE_node_tree.hpp b/source/blender/blenkernel/BKE_node_tree.hpp
index db96ef0c5f6..e2e31e1fdf6 100644
--- a/source/blender/blenkernel/BKE_node_tree.hpp
+++ b/source/blender/blenkernel/BKE_node_tree.hpp
@@ -5,7 +5,7 @@
 #include "BLI_string_ref.hpp"
 #include "BLI_array_ref.hpp"
 #include "BLI_map.hpp"
-#include "BLI_vector.hpp"
+#include "BLI_vector.h"
 #include "BLI_listbase_wrapper.hpp"
 #include "BLI_multi_map.hpp"
 #include "BLI_monotonic_allocator.hpp"
diff --git a/source/blender/blenlib/BLI_chained_strings.hpp b/source/blender/blenlib/BLI_chained_strings.hpp
index 7081bf7421e..b2de2c0aa27 100644
--- a/source/blender/blenlib/BLI_chained_strings.hpp
+++ b/source/blender/blenlib/BLI_chained_strings.hpp
@@ -26,7 +26,7 @@
 #pragma once
 
 #include "BLI_string_ref.hpp"
-#include "BLI_vector.hpp"
+#include "BLI_vector.h"
 
 namespace BLI {
 
diff --git a/source/blender/blenlib/BLI_monotonic_allocator.hpp b/source/blender/blenlib/BLI_monotonic_allocator.hpp
index 1d8350a8262..b8729c942a5 100644
--- a/source/blender/blenlib/BLI_monotonic_allocator.hpp
+++ b/source/blender/blenlib/BLI_monotonic_allocator.hpp
@@ -24,7 +24,7 @@
 
 #pragma once
 
-#include "BLI_vector.hpp"
+#include "BLI_vector.h"
 #include "BLI_utility_mixins.hpp"
 
 namespace BLI {
diff --git a/source/blender/blenlib/BLI_multi_map.hpp b/source/blender/blenlib/BLI_multi_map.hpp
index 9d2a9fbc5b1..beae99b835f 100644
--- a/source/blender/blenlib/BLI_multi_map.hpp
+++ b/source/blender/blenlib/BLI_multi_map.hpp
@@ -24,7 +24,7 @@
 
 #include "BLI_map.hpp"
 #include "BLI_array_ref.hpp"
-#include "BLI_vector.hpp"
+#include "BLI_vector.h"
 
 namespace BLI {
 
diff --git a/source/blender/blenlib/BLI_multi_vector.hpp b/source/blender/blenlib/BLI_multi_vector.hpp
index b42cf14754d..3fe2911ccc1 100644
--- a/source/blender/blenlib/BLI_multi_vector.hpp
+++ b/source/blender/blenlib/BLI_multi_vector.hpp
@@ -26,7 +26,7 @@
 #pragma once
 
 #include "BLI_array_ref.hpp"
-#include "BLI_vector.hpp"
+#include "BLI_vector.h"
 
 namespace BLI {
 
diff --git a/source/blender/blenlib/BLI_set.hpp b/source/blender/blenlib/BLI_set.hpp
index 021ca4df85d..637ee2ca4c2 100644
--- a/source/blender/blenlib/BLI_set.hpp
+++ b/source/blender/blenlib/BLI_set.hpp
@@ -24,7 +24,7 @@
 
 #include "BLI_hash.hpp"
 #include "BLI_open_addressing.hpp"
-#include "BLI_vector.hpp"
+#include "BLI_vector.h"
 
 namespace BLI {
 
diff --git a/source/blender/blenlib/BLI_set_vector.hpp b/source/blender/blenlib/BLI_set_vector.hpp
index 2a5332bcb30..30fc5c97140 100644
--- a/source/blender/blenlib/BLI_set_vector.hpp
+++ b/source/blender/blenlib/BLI_set_vector.hpp
@@ -22,7 +22,7 @@
 
 #include "BLI_hash.hpp"
 #include "BLI_open_addressing.hpp"
-#include "BLI_vector.hpp"
+#include "BLI_vector.h"
 
 namespace BLI {
 
diff --git a/source/blender/blenlib/BLI_stack.hpp b/source/blender/blenlib/BLI_stack.hpp
index 4c0ebc225e7..095f98608b7 100644
--- a/source/blender/blenlib/BLI_stack.hpp
+++ b/source/blender/blenlib/BLI_stack.hpp
@@ -22,7 +22,7 @@
 
 #pragma once
 
-#include "BLI_vector.hpp"
+#include "BLI_vector.h"
 
 namespace BLI {
 
diff --git a/source/blender/blenlib/BLI_string_map.hpp b/source/blender/blenlib/BLI_string_map.hpp
index 8cb62a45531..db638258f43 100644
--- a/source/blender/blenlib/BLI_string_map.hpp
+++ b/source/blender/blenlib/BLI_string_map.hpp
@@ -28,7 +28,7 @@
 
 #include "BLI_map.hpp"
 #include "BLI_string_ref.hpp"
-#include "BLI_vector.hpp"
+#include "BLI_vector.h"
 
 namespace BLI {
 
diff --git a/source/blender/blenlib/BLI_vector.hpp b/source/blender/blenlib/BLI_vector.h
similarity index 100%
rename from source/blender/blenlib/BLI_vector.hpp
rename to source/blender/blenlib/BLI_vector.h
diff --git a/source/blender/blenlib/CMakeLists.txt b/source/blender/blenlib/CMakeLists.txt
index 86e1446f9c8..999141f49fa 100644
--- a/source/blender/blenlib/CMakeLists.txt
+++ b/source/blender/blenlib/CMakeLists.txt
@@ -248,7 +248,7 @@ set(SRC
   BLI_index_range.hpp
   intern/BLI_index_range.cpp
   BLI_refcount.hpp
-  BLI_vector.hpp
+  BLI_vector.h
   BLI_map.hpp
   BLI_memory.hpp
   BLI_multi_map.hpp
diff --git a/source/blender/blenlib/intern/BLI_index_range.cpp b/source/blender/blenlib/intern/BLI_index_range.cpp
index 662272527f9..10e9a0b44bb 100644
--- a/source/blender/blenlib/intern/BLI_index_range.cpp
+++ b/source/blender/blenlib/intern/BLI_index_range.cpp
@@ -19,7 +19,7 @@
 #include "BLI_index_range.hpp"
 #include "BLI_array_ref.hpp"
 #include "BLI_array.hpp"
-#include "BLI_vector.hpp"
+#include "BLI_vector.h"
 
 namespace BLI {
 
diff --git a/tests/gtests/blenlib/BLI_array_ref_test.cc b/tests/gtests/blenlib/BLI_array_ref_test.cc
index 81964fc596f..1a3d7723292 100644
--- a/tests/gtests/blenlib/BLI_array_ref_test.cc
+++ b/tests/gtests/blenlib/BLI_array_ref_test.cc
@@ -1,6 +1,6 @@
 #include "testing/testing.h"
 #include "BLI_array_ref.hpp"
-#include "BLI_vector.hpp"
+#include "BLI_vector.h"
 
 using BLI::IndexRange;
 using IntVector = BLI::Vector<int>;
diff --git a/tests/gtests/blenlib/BLI_chunked_range_test.cc b/tests/gtests/blenlib/BLI_chunked_range_test.cc
index 37488592671..a7cb1736903 100644
--- a/tests/gtests/blenlib/BLI_chunked_range_test.cc
+++ b/tests/gtests/blenlib/BLI_chunked_range_test.cc
@@ -1,7 +1,7 @@
 #include "testing/testing.h"
 #include "BLI_index_range.hpp"
 #include "BLI_chunked_range.hpp"
-#include "BLI_vector.hpp"
+#include "BLI_vector.h"
 
 using BLI::ChunkedIndexRange;
 using BLI::IndexRange;
diff --git a/tests/gtests/blenlib/BLI_index_range_test.cc b/tests/gtests/blenlib/BLI_index_range_test.cc
index 7dddf2f0d34..ac8080b473f 100644
--- a/tests/gtests/blenlib/BLI_index_range_test.cc
+++ b/tests/gtests/blenlib/BLI_index_range_test.cc
@@ -1,7 +1,7 @@
 #include "testing/testing.h"
 #include "BLI_index_range.hpp"
 #include "BLI_chunked_range.hpp"
-#include "BLI_vector.hpp"
+#include "BLI_vector.h"
 
 using BLI::ArrayRef;
 using BLI::ChunkedIndexRange;
diff --git a/tests/gtests/blenlib/BLI_string_map_test.cc b/tests/gtests/blenlib/BLI_string_map_test.cc
index 1c4d5aa3af2..35ab5950e7f 100644
--- a/tests/gtests/blenlib/BLI_string_map_test.cc
+++ b/tests/gtests/blenlib/BLI_string_map_test.cc
@@ -1,6 +1,6 @@
 #include "testing/testing.h"
 #include "BLI_string_map.hpp"
-#include "BLI_vector.hpp"
+#include "BLI_vector.h"
 
 using namespace BLI;
 
diff --git a/tests/gtests/blenlib/BLI_string_ref_test.cc b/tests/gtests/blenlib/BLI_string_ref_test.cc
index 62afb6b8ecf..266c4d66757 100644
--- a/tests/gtests/blenlib/BLI_string_ref_test.cc
+++ b/tests/gtests/blenlib/BLI_string_ref_test.cc
@@ -1,6 +1,6 @@
 #include "testing/testing.h"
 #include "BLI_string_ref.hpp"
-#include "BLI_vector.hpp"
+#include "BLI_vector.h"
 
 using BLI::StringRef;
 using BLI::StringRefNull;
diff --git a/tests/gtests/blenlib/BLI_vector_test.cc b/tests/gtests/blenlib/BLI_vector_test.cc
index 803e134fc70..65b07139b27 100644
--- a/tests/gtests/blenlib/BLI_vector_test.cc
+++ b/tests/gtests/blenlib/BLI_vector_test.cc
@@ -1,5 +1,5 @@
 #include "testing/testing.h"
-#include "BLI_vector.hpp"
+#include "BLI_vector.h"
 #include "BLI_map.hpp"
 #include <forward_list>



More information about the Bf-blender-cvs mailing list