clang-tidy: apply suggested fixes
[lttng-tools.git] / src / common / urcu.hpp
index 35bb2905c9e44cfeaf14b6e065d39696861ce8a6..017c9fad5ddacb84271303eee5572bdaf5329934 100644 (file)
@@ -30,7 +30,7 @@ public:
        ~read_lock() = default;
 
        /* "Not copyable" and "not moveable" Mutex requirements. */
-       read_lock(read_lock const&) = delete;
+       read_lock(const read_lock&) = delete;
        read_lock(read_lock&&) = delete;
        read_lock& operator=(read_lock&&) = delete;
        read_lock& operator=(const read_lock&) = delete;
This page took 0.033872 seconds and 4 git commands to generate.