From 9bb7d6ed68ef1aa0e6acc3e70901cb6b79c682d2 Mon Sep 17 00:00:00 2001 From: Jacques Lucke Date: Tue, 9 Jun 2020 10:27:24 +0200 Subject: BLI: put C++ data structures in "blender" namespace instead of "BLI" We plan to use the "blender" namespace in other modules as well. --- source/blender/blenlib/BLI_dot_export.hh | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'source/blender/blenlib/BLI_dot_export.hh') diff --git a/source/blender/blenlib/BLI_dot_export.hh b/source/blender/blenlib/BLI_dot_export.hh index 8da0ed6df14..60353d7913f 100644 --- a/source/blender/blenlib/BLI_dot_export.hh +++ b/source/blender/blenlib/BLI_dot_export.hh @@ -34,7 +34,7 @@ #include -namespace BLI { +namespace blender { namespace DotExport { class Graph; @@ -208,7 +208,7 @@ class NodePort { void to_dot_string(std::stringstream &ss) const; }; -class Edge : BLI::NonCopyable, BLI::NonMovable { +class Edge : blender::NonCopyable, blender::NonMovable { protected: AttributeList m_attributes; NodePort m_a; @@ -284,6 +284,6 @@ class NodeWithSocketsRef { }; } // namespace DotExport -} // namespace BLI +} // namespace blender #endif /* __BLI_DOT_EXPORT_HH__ */ -- cgit v1.2.3