cpp-common/bt2: add missing `noexcept` to static methods
[babeltrace.git] / src / cpp-common / bt2 / clock-class.hpp
index 70eb2f1ec3b8dfe0a62aa8c84ac7f0df9d5d2250..5e0e949dbc8b8cbc4017aa1d302bc880cce728d3 100644 (file)
@@ -28,12 +28,12 @@ namespace internal {
 
 struct ClockClassRefFuncs final
 {
-    static void get(const bt_clock_class * const libObjPtr)
+    static void get(const bt_clock_class * const libObjPtr) noexcept
     {
         bt_clock_class_get_ref(libObjPtr);
     }
 
-    static void put(const bt_clock_class * const libObjPtr)
+    static void put(const bt_clock_class * const libObjPtr) noexcept
     {
         bt_clock_class_put_ref(libObjPtr);
     }
This page took 0.02469 seconds and 4 git commands to generate.