cpp-common/bt2: add missing `noexcept` to static methods
[babeltrace.git] / src / cpp-common / bt2 / field-class.hpp
index 0999b135a6be31c72011909c7b8b5db42bbe80f5..ec5df3c58cf0b100c6b3a294fe18afa63816c278 100644 (file)
@@ -30,12 +30,12 @@ namespace internal {
 
 struct FieldClassRefFuncs final
 {
-    static void get(const bt_field_class * const libObjPtr)
+    static void get(const bt_field_class * const libObjPtr) noexcept
     {
         bt_field_class_get_ref(libObjPtr);
     }
 
-    static void put(const bt_field_class * const libObjPtr)
+    static void put(const bt_field_class * const libObjPtr) noexcept
     {
         bt_field_class_put_ref(libObjPtr);
     }
This page took 0.036261 seconds and 4 git commands to generate.