Cleanup: cpp-common: typo: clkSnapshot -> fieldPath
[babeltrace.git] / src / cpp-common / bt2 / field-path.hpp
index 8a4d9f22e327036df504e9fac41bbbaa85a00696..ed08a4796dd5b30825e2ecea3c2f608054256c1b 100644 (file)
@@ -137,13 +137,13 @@ public:
     {
     }
 
-    ConstFieldPath(const ConstFieldPath& clkSnapshot) noexcept : _ThisBorrowedObj {clkSnapshot}
+    ConstFieldPath(const ConstFieldPath& fieldPath) noexcept : _ThisBorrowedObj {fieldPath}
     {
     }
 
-    ConstFieldPath& operator=(const ConstFieldPath& clkSnapshot) noexcept
+    ConstFieldPath& operator=(const ConstFieldPath& fieldPath) noexcept
     {
-        _ThisBorrowedObj::operator=(clkSnapshot);
+        _ThisBorrowedObj::operator=(fieldPath);
         return *this;
     }
 
This page took 0.02475 seconds and 4 git commands to generate.