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:24:07 +0300
committerSybren A. Stüvel <sybren@blender.org>2020-09-10 12:42:07 +0300
commitb77c0edce1f40a0c2d5c1a71ac4ea21773747580 (patch)
tree6b408bda467c46caae6201d75d3722df456049ff /source/blender/io/usd/intern/usd_hierarchy_iterator.cc
parent549a00de6022f1cc24d9876ac35c902fdf81a2f3 (diff)
Cleanup: USD, inline namespace declarations
Replace nested `namespace blender { namespace io { namespace usd {` with `namespace blender::io::usd {`. No functional changes.
Diffstat (limited to 'source/blender/io/usd/intern/usd_hierarchy_iterator.cc')
-rw-r--r--source/blender/io/usd/intern/usd_hierarchy_iterator.cc8
1 files changed, 2 insertions, 6 deletions
diff --git a/source/blender/io/usd/intern/usd_hierarchy_iterator.cc b/source/blender/io/usd/intern/usd_hierarchy_iterator.cc
index 39fbef70e81..66dfc21441e 100644
--- a/source/blender/io/usd/intern/usd_hierarchy_iterator.cc
+++ b/source/blender/io/usd/intern/usd_hierarchy_iterator.cc
@@ -42,9 +42,7 @@
#include "DNA_layer_types.h"
#include "DNA_object_types.h"
-namespace blender {
-namespace io {
-namespace usd {
+namespace blender::io::usd {
USDHierarchyIterator::USDHierarchyIterator(Depsgraph *depsgraph,
pxr::UsdStageRefPtr stage,
@@ -149,6 +147,4 @@ AbstractHierarchyWriter *USDHierarchyIterator::create_particle_writer(
return nullptr;
}
-} // namespace usd
-} // namespace io
-} // namespace blender
+} // namespace blender::io::usd