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 17:57:58 +0300
committerSybren A. Stüvel <sybren@blender.org>2020-09-10 12:42:07 +0300
commit549a00de6022f1cc24d9876ac35c902fdf81a2f3 (patch)
tree15133c79fd9affce598921cbcafd72aadf2a657b /source/blender/io/alembic/exporter/abc_subdiv_disabler.cc
parentb443f9b54c38570ca6b7cdc25a8eb1f3c97b735e (diff)
Cleanup: Alembic, inline namespace declarations
Replace nested `namespace blender { namespace io { namespace alembic {` with `namespace blender::io::alembic {`. No functional changes.
Diffstat (limited to 'source/blender/io/alembic/exporter/abc_subdiv_disabler.cc')
-rw-r--r--source/blender/io/alembic/exporter/abc_subdiv_disabler.cc8
1 files changed, 2 insertions, 6 deletions
diff --git a/source/blender/io/alembic/exporter/abc_subdiv_disabler.cc b/source/blender/io/alembic/exporter/abc_subdiv_disabler.cc
index 7c147076975..255803a6bfb 100644
--- a/source/blender/io/alembic/exporter/abc_subdiv_disabler.cc
+++ b/source/blender/io/alembic/exporter/abc_subdiv_disabler.cc
@@ -32,9 +32,7 @@
#include "BKE_modifier.h"
-namespace blender {
-namespace io {
-namespace alembic {
+namespace blender::io::alembic {
SubdivModifierDisabler::SubdivModifierDisabler(Depsgraph *depsgraph) : depsgraph_(depsgraph)
{
@@ -102,6 +100,4 @@ ModifierData *SubdivModifierDisabler::get_subdiv_modifier(Scene *scene, Object *
return nullptr;
}
-} // namespace alembic
-} // namespace io
-} // namespace blender
+} // namespace blender::io::alembic