summaryrefslogtreecommitdiffstats
path: root/Source/cmFileMonitor.cxx
diff options
context:
space:
mode:
authorBrad King <brad.king@kitware.com>2016-10-20 12:51:09 (GMT)
committerCMake Topic Stage <kwrobot@kitware.com>2016-10-20 12:51:09 (GMT)
commita5f4463eedc31f6f552b7f7837212661349898df (patch)
tree201aa79bedda91071ee8710d1b2b3f69f3e19047 /Source/cmFileMonitor.cxx
parent92c3cab223845ca83533bba7b6d73f6180223935 (diff)
parenteffa6c8343fb871574cb5471de5eb4c1705dd334 (diff)
downloadCMake-a5f4463eedc31f6f552b7f7837212661349898df.zip
CMake-a5f4463eedc31f6f552b7f7837212661349898df.tar.gz
CMake-a5f4463eedc31f6f552b7f7837212661349898df.tar.bz2
Merge topic 'clang-tidy'
effa6c83 fix more issues reported by clang-tidy fb461cac silence selected clang-tidy violations
Diffstat (limited to 'Source/cmFileMonitor.cxx')
-rw-r--r--Source/cmFileMonitor.cxx4
1 files changed, 2 insertions, 2 deletions
diff --git a/Source/cmFileMonitor.cxx b/Source/cmFileMonitor.cxx
index 41ec8b4..b55341b 100644
--- a/Source/cmFileMonitor.cxx
+++ b/Source/cmFileMonitor.cxx
@@ -36,7 +36,7 @@ public:
class cmVirtualDirectoryWatcher : public cmIBaseWatcher
{
public:
- ~cmVirtualDirectoryWatcher()
+ ~cmVirtualDirectoryWatcher() override
{
for (auto i : this->Children) {
delete i.second;
@@ -156,7 +156,7 @@ public:
p->AddChildWatcher(ps, this);
}
- ~cmRealDirectoryWatcher()
+ ~cmRealDirectoryWatcher() override
{
// Handle is freed via uv_handle_close callback!
}