cpp-common/bt2: add missing `noexcept` to static methods
[babeltrace.git] / src / cpp-common / bt2 / message.hpp
index 1b49bed5470e56df8b79f4fec44faa4f7cf53532..b74be2c50213c91ac2e55d4f2ebb1ab48b65a16b 100644 (file)
@@ -26,12 +26,12 @@ namespace internal {
 
 struct MessageRefFuncs final
 {
-    static void get(const bt_message * const libObjPtr)
+    static void get(const bt_message * const libObjPtr) noexcept
     {
         bt_message_get_ref(libObjPtr);
     }
 
-    static void put(const bt_message * const libObjPtr)
+    static void put(const bt_message * const libObjPtr) noexcept
     {
         bt_message_put_ref(libObjPtr);
     }
This page took 0.023814 seconds and 4 git commands to generate.