cpp-common/bt2: remove useless copy operations
[babeltrace.git] / src / cpp-common / bt2 / clock-snapshot.hpp
index ed30eaf5e4d9f8d51721f96bdad37dd71f74b395..190eb6a29d188c6a404203fd8fc76e286f7b2181 100644 (file)
@@ -24,17 +24,6 @@ public:
     {
     }
 
-    ConstClockSnapshot(const ConstClockSnapshot& clkSnapshot) noexcept :
-        _ThisBorrowedObject {clkSnapshot}
-    {
-    }
-
-    ConstClockSnapshot& operator=(const ConstClockSnapshot& clkSnapshot) noexcept
-    {
-        _ThisBorrowedObject::operator=(clkSnapshot);
-        return *this;
-    }
-
     std::uint64_t value() const noexcept
     {
         return bt_clock_snapshot_get_value(this->libObjPtr());
This page took 0.023815 seconds and 4 git commands to generate.