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>2020-06-29 12:53:17 +0300
committerJacques Lucke <jacques@blender.org>2020-06-29 12:53:17 +0300
commit784911a4a0efb2bb361b217a9348ca50608eb6bd (patch)
treec7c494800c9995f8bf5d7c1971171fa146fb592c /source/blender/blenlib
parentb51d6e8012e56148228ed7b047356c9ec653d168 (diff)
Cleanup: rename namespace DotExport to dot
Diffstat (limited to 'source/blender/blenlib')
-rw-r--r--source/blender/blenlib/BLI_dot_export.hh4
-rw-r--r--source/blender/blenlib/BLI_dot_export_attribute_enums.hh4
-rw-r--r--source/blender/blenlib/intern/dot_export.cc4
3 files changed, 6 insertions, 6 deletions
diff --git a/source/blender/blenlib/BLI_dot_export.hh b/source/blender/blenlib/BLI_dot_export.hh
index 67af4391a55..201fbf12c4a 100644
--- a/source/blender/blenlib/BLI_dot_export.hh
+++ b/source/blender/blenlib/BLI_dot_export.hh
@@ -35,7 +35,7 @@
#include <sstream>
namespace blender {
-namespace DotExport {
+namespace dot {
class Graph;
class DirectedGraph;
@@ -283,7 +283,7 @@ class NodeWithSocketsRef {
}
};
-} // namespace DotExport
+} // namespace dot
} // namespace blender
#endif /* __BLI_DOT_EXPORT_HH__ */
diff --git a/source/blender/blenlib/BLI_dot_export_attribute_enums.hh b/source/blender/blenlib/BLI_dot_export_attribute_enums.hh
index 8fe1cda05f3..12019a49194 100644
--- a/source/blender/blenlib/BLI_dot_export_attribute_enums.hh
+++ b/source/blender/blenlib/BLI_dot_export_attribute_enums.hh
@@ -20,7 +20,7 @@
#include "BLI_string_ref.hh"
namespace blender {
-namespace DotExport {
+namespace dot {
enum class Attr_rankdir {
LeftToRight,
@@ -119,7 +119,7 @@ inline StringRef dirType_to_string(Attr_dirType value)
return "";
}
-} // namespace DotExport
+} // namespace dot
} // namespace blender
#endif /* __BLI_DOT_EXPORT_ATTRIBUTE_ENUMS_HH__ */
diff --git a/source/blender/blenlib/intern/dot_export.cc b/source/blender/blenlib/intern/dot_export.cc
index a2cf843c473..aa1b09e1df3 100644
--- a/source/blender/blenlib/intern/dot_export.cc
+++ b/source/blender/blenlib/intern/dot_export.cc
@@ -19,7 +19,7 @@
#include "BLI_dot_export.hh"
namespace blender {
-namespace DotExport {
+namespace dot {
/* Graph Building
************************************************/
@@ -301,5 +301,5 @@ NodeWithSocketsRef::NodeWithSocketsRef(Node &node,
m_node->set_shape(Attr_shape::Rectangle);
}
-} // namespace DotExport
+} // namespace dot
} // namespace blender