BLI: put C++ data structures in "blender" namespace instead of "BLI"

We plan to use the "blender" namespace in other modules as well.
This commit is contained in:
2020-06-09 10:27:24 +02:00
parent d8678e02ec
commit 9bb7d6ed68
53 changed files with 255 additions and 253 deletions

View File

@@ -19,7 +19,7 @@
#include "BLI_float3.hh"
namespace BLI {
namespace blender {
struct float2 {
float x, y;
@@ -81,6 +81,6 @@ struct float2 {
}
};
} // namespace BLI
} // namespace blender
#endif /* __BLI_FLOAT2_HH__ */