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:
authorSybren A. Stüvel <sybren@blender.org>2020-09-08 18:31:57 +0300
committerSybren A. Stüvel <sybren@blender.org>2020-09-10 12:42:07 +0300
commit25faee8d07f5c358fbc9be934aaa1502622a4b9e (patch)
tree4b21a3dbcc76439e4deef8163bc93736414466c1 /source/blender/io/common/intern/abstract_hierarchy_iterator.cc
parentb77c0edce1f40a0c2d5c1a71ac4ea21773747580 (diff)
Cleanup: IO, inline namespace declarations
Replace nested `namespace blender { namespace io {` with `namespace blender::io {`. No functional changes.
Diffstat (limited to 'source/blender/io/common/intern/abstract_hierarchy_iterator.cc')
-rw-r--r--source/blender/io/common/intern/abstract_hierarchy_iterator.cc6
1 files changed, 2 insertions, 4 deletions
diff --git a/source/blender/io/common/intern/abstract_hierarchy_iterator.cc b/source/blender/io/common/intern/abstract_hierarchy_iterator.cc
index d825625cafc..6e763c29631 100644
--- a/source/blender/io/common/intern/abstract_hierarchy_iterator.cc
+++ b/source/blender/io/common/intern/abstract_hierarchy_iterator.cc
@@ -44,8 +44,7 @@
#include "DEG_depsgraph_query.h"
-namespace blender {
-namespace io {
+namespace blender::io {
const HierarchyContext *HierarchyContext::root()
{
@@ -755,5 +754,4 @@ bool AbstractHierarchyIterator::should_visit_dupli_object(const DupliObject *dup
return !dupli_object->no_draw;
}
-} // namespace io
-} // namespace blender
+} // namespace blender::io