Nest all namespaces
The compiler supports this now. We can type less going forward.
No functional changes.
Signed-off-by: Stephan Pleines <pleines.stephan@gmail.com>
Change-Id: I29d6fa4f9aacc0e381f1a7637294db0392466995
diff --git a/aos/testing/random_seed.cc b/aos/testing/random_seed.cc
index 8f26d07..302612e 100644
--- a/aos/testing/random_seed.cc
+++ b/aos/testing/random_seed.cc
@@ -2,8 +2,7 @@
#include <cstdlib>
-namespace aos {
-namespace testing {
+namespace aos::testing {
int RandomSeed() {
const char *from_environment = getenv("TEST_RANDOM_SEED");
@@ -13,5 +12,4 @@
return 1;
}
-} // namespace testing
-} // namespace aos
+} // namespace aos::testing