diff options
author | KWSys Upstream <kwrobot@kitware.com> | 2020-07-24 11:04:25 (GMT) |
---|---|---|
committer | Brad King <brad.king@kitware.com> | 2020-07-24 11:05:22 (GMT) |
commit | 36819d99c141758468308f3a5926e51cb6496901 (patch) | |
tree | b7fb8ab4c10c7a312c92ebcf4f32ac3281aa0672 /Glob.hxx.in | |
parent | c47501bcca7c5d47aa22478071a16fae5cef9c63 (diff) | |
download | CMake-36819d99c141758468308f3a5926e51cb6496901.zip CMake-36819d99c141758468308f3a5926e51cb6496901.tar.gz CMake-36819d99c141758468308f3a5926e51cb6496901.tar.bz2 |
KWSys 2020-07-24 (c3054d90)
Code extracted from:
https://gitlab.kitware.com/utils/kwsys.git
at commit c3054d90612cc4a396d6e2087b696fc0923de1e9 (master).
Upstream Shortlog
-----------------
Jack Guo (1):
22216d56 SystemTools: Fix Touch() on broken symlink when create==false
Robert Maynard (1):
29096513 Process: Prefer normative terms to express subprocess failures
Sean McBride (1):
eb6820b6 Glob: Explicitly delete copy construction and assignment
Diffstat (limited to 'Glob.hxx.in')
-rw-r--r-- | Glob.hxx.in | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Glob.hxx.in b/Glob.hxx.in index b5a34d5..e8474e2 100644 --- a/Glob.hxx.in +++ b/Glob.hxx.in @@ -126,8 +126,8 @@ protected: bool RecurseListDirs; private: - Glob(const Glob&); // Not implemented. - void operator=(const Glob&); // Not implemented. + Glob(const Glob&) = delete; + void operator=(const Glob&) = delete; }; } // namespace @KWSYS_NAMESPACE@ |