clang-tidy: apply suggested fixes
[lttng-tools.git] / src / common / pthread-lock.hpp
index 7d037e47226cf2469503bf30b8073915fb134349..5a57b97152c823829fb8d295d1ebf128429c78c3 100644 (file)
@@ -33,9 +33,9 @@ public:
        ~mutex() = default;
 
        /* "Not copyable" and "not moveable" Mutex requirements. */
-       mutex(mutex const&) = delete;
+       mutex(const mutex&) = delete;
        mutex(mutex&&) = delete;
-       mutex& operator=(mutex const&) = delete;
+       mutex& operator=(const mutex&) = delete;
        mutex& operator=(mutex&&) = delete;
 
        void lock()
This page took 0.02365 seconds and 4 git commands to generate.