cpp-common/bt2: add missing `noexcept` to static methods
[babeltrace.git] / src / cpp-common / bt2 / field-path.hpp
index ef5ff0902b108cf6931b89bc6c120412fd1ba483..eea27e12adae7ba191e0a60cad8a70cbd8710f0b 100644 (file)
@@ -111,12 +111,12 @@ namespace internal {
 
 struct FieldPathRefFuncs final
 {
-    static void get(const bt_field_path * const libObjPtr)
+    static void get(const bt_field_path * const libObjPtr) noexcept
     {
         bt_field_path_get_ref(libObjPtr);
     }
 
-    static void put(const bt_field_path * const libObjPtr)
+    static void put(const bt_field_path * const libObjPtr) noexcept
     {
         bt_field_path_put_ref(libObjPtr);
     }
This page took 0.024689 seconds and 4 git commands to generate.