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-07-06 13:37:11 +0300
committerJacques Lucke <jacques@blender.org>2020-07-06 13:37:11 +0300
commit18b6c49a90e3b8f5eb04febaf0bc9bfb9db0e8a9 (patch)
treeb838ec64c0b0ab3bd5834909677d60fca3792f04 /source/blender/blenlib/intern/timeit.cc
parent572c48cf98601c66eebec27bb40cfc7e05ea341c (diff)
Cleanup: rename namespace TimeIt to timeit
According to our style guide, namespaces should have lower case names.
Diffstat (limited to 'source/blender/blenlib/intern/timeit.cc')
-rw-r--r--source/blender/blenlib/intern/timeit.cc6
1 files changed, 2 insertions, 4 deletions
diff --git a/source/blender/blenlib/intern/timeit.cc b/source/blender/blenlib/intern/timeit.cc
index 7938784da67..9e07e44ca12 100644
--- a/source/blender/blenlib/intern/timeit.cc
+++ b/source/blender/blenlib/intern/timeit.cc
@@ -16,8 +16,7 @@
#include "BLI_timeit.hh"
-namespace blender {
-namespace Timeit {
+namespace blender::timeit {
void print_duration(Nanoseconds duration)
{
@@ -32,5 +31,4 @@ void print_duration(Nanoseconds duration)
}
}
-} // namespace Timeit
-} // namespace blender
+} // namespace blender::timeit