cpp-common: rename `bt2_common` namespace -> `bt2c`
[babeltrace.git] / src / cpp-common / bt2 / clock-class.hpp
index 72064f844f49bf6ce36f4e81f2a57682ab078b49..64e093f40004a7c6f33f0cd4c6f1b443854714a7 100644 (file)
@@ -13,8 +13,8 @@
 
 #include <babeltrace2/babeltrace.h>
 
+#include "cpp-common/bt2c/uuid-view.hpp"
 #include "cpp-common/optional.hpp"
-#include "cpp-common/uuid-view.hpp"
 
 #include "borrowed-object.hpp"
 #include "exc.hpp"
@@ -219,12 +219,12 @@ public:
         bt_clock_class_set_uuid(this->libObjPtr(), uuid);
     }
 
-    nonstd::optional<bt2_common::UuidView> uuid() const noexcept
+    nonstd::optional<bt2c::UuidView> uuid() const noexcept
     {
         const auto uuid = bt_clock_class_get_uuid(this->libObjPtr());
 
         if (uuid) {
-            return bt2_common::UuidView {uuid};
+            return bt2c::UuidView {uuid};
         }
 
         return nonstd::nullopt;
This page took 0.024436 seconds and 4 git commands to generate.