clang-tidy: Initial Commit
This commit introduces clang-tidy and modifies code to address
issues flagged by the checks. Additionally, it includes the
initial infrastructure setup.
Tested: Build and unit tests completed successfully.
Change-Id: I55f9f4a2a9a1b1cd2016773b47935484d6a57867
Signed-off-by: Jayanth Othayoth <ojayanth@gmail.com>
diff --git a/watch.hpp b/watch.hpp
index a9ec18e..96ec891 100644
--- a/watch.hpp
+++ b/watch.hpp
@@ -48,8 +48,8 @@
Watch(const Watch&) = delete;
Watch& operator=(const Watch&) = delete;
- Watch(Watch&&) = default;
- Watch& operator=(Watch&&) = default;
+ Watch(Watch&&) = delete;
+ Watch& operator=(Watch&&) = delete;
/* @brief dtor - remove inotify watch and close fd's */
~Watch();