cpp-common/bt2: add missing `noexcept` to static methods
[babeltrace.git] / src / cpp-common / bt2 / value.hpp
index 1aa413184c737478e08b9e1959bb85e6517a68f7..e83b8aa5f3bb2b74ada03a962d5d37e5f8e37052 100644 (file)
@@ -29,12 +29,12 @@ namespace internal {
 
 struct ValueRefFuncs final
 {
-    static void get(const bt_value * const libObjPtr)
+    static void get(const bt_value * const libObjPtr) noexcept
     {
         bt_value_get_ref(libObjPtr);
     }
 
-    static void put(const bt_value * const libObjPtr)
+    static void put(const bt_value * const libObjPtr) noexcept
     {
         bt_value_put_ref(libObjPtr);
     }
This page took 0.024689 seconds and 4 git commands to generate.