From 45a3ae245bff18d93533df5a18ddf3d0d23e8025 Mon Sep 17 00:00:00 2001
From: Wouter Deconinck <wouter.deconinck@umanitoba.ca>
Date: Mon, 20 Sep 2021 23:52:36 +0000
Subject: [PATCH] Nest namespaces explicitly instead of c++17 shortcut

---
 include/common_bench/plot.h | 5 ++++-
 1 file changed, 4 insertions(+), 1 deletion(-)

diff --git a/include/common_bench/plot.h b/include/common_bench/plot.h
index 066cd81..690f03f 100644
--- a/include/common_bench/plot.h
+++ b/include/common_bench/plot.h
@@ -9,7 +9,8 @@
 #include <fmt/core.h>
 #include <vector>
 
-namespace common_bench::plot {
+namespace common_bench {
+namespace plot {
 
 const int kArgonneBlue = TColor::GetColor(0x1f, 0x77, 0xb4); // not really
 
@@ -41,4 +42,6 @@ void draw_label(int ebeam, int pbeam, const std::string_view detector) {
 
 } // namespace common_bench::plot
 
+} // namespace common_bench
+
 #endif
-- 
GitLab