cpp-common: Expose BorrowedObj::libObjPtr() as public method
[babeltrace.git] / src / cpp-common / bt2 / internal / shared-obj.hpp
index 89d1480d78f8162a8005095f2cda1273216cee7a..da8df2380c098aa59131753a911e563610b6de20 100644 (file)
@@ -185,7 +185,7 @@ private:
     void _getRef() const noexcept
     {
         if (_mObj) {
-            RefFuncsT::get(_mObj->_libObjPtr());
+            RefFuncsT::get(_mObj->libObjPtr());
         }
     }
 
@@ -196,7 +196,7 @@ private:
     void _putRef() const noexcept
     {
         if (_mObj) {
-            RefFuncsT::put(_mObj->_libObjPtr());
+            RefFuncsT::put(_mObj->libObjPtr());
         }
     }
 
This page took 0.024017 seconds and 4 git commands to generate.