cpp-common: Expose BorrowedObj::libObjPtr() as public method
[babeltrace.git] / src / cpp-common / bt2 / integer-range.hpp
index 1dff95aa77a15e403b28654561901e04d198dd38..7e2389927082ab7ce741725b1c4c47bf4e632b8a 100644 (file)
@@ -94,8 +94,8 @@ public:
 
     bool operator==(const _ThisConstIntegerRange& other) const noexcept
     {
-        return internal::ConstIntegerRangeSpec<LibObjT>::isEqual(this->_libObjPtr(),
-                                                                 other._libObjPtr());
+        return internal::ConstIntegerRangeSpec<LibObjT>::isEqual(this->libObjPtr(),
+                                                                 other.libObjPtr());
     }
 
     bool operator!=(const _ThisConstIntegerRange& other) const noexcept
@@ -105,12 +105,12 @@ public:
 
     Value lower() const noexcept
     {
-        return internal::ConstIntegerRangeSpec<LibObjT>::lower(this->_libObjPtr());
+        return internal::ConstIntegerRangeSpec<LibObjT>::lower(this->libObjPtr());
     }
 
     Value upper() const noexcept
     {
-        return internal::ConstIntegerRangeSpec<LibObjT>::upper(this->_libObjPtr());
+        return internal::ConstIntegerRangeSpec<LibObjT>::upper(this->libObjPtr());
     }
 };
 
This page took 0.025319 seconds and 4 git commands to generate.