diff options
author | Brad King <brad.king@kitware.com> | 2021-03-08 18:32:35 (GMT) |
---|---|---|
committer | Brad King <brad.king@kitware.com> | 2021-03-08 18:32:35 (GMT) |
commit | 4d86c907f30424e6dc83827f1cd405e34abeef71 (patch) | |
tree | 5700cee32293bc02300100c571aa928a6e8c5aaa /Source/kwsys/Glob.hxx.in | |
parent | 1982264c17233c274879ad1b688064f0624ded1f (diff) | |
parent | 9e556829c8fd2e78860e798f454f90dc1160dd20 (diff) | |
download | CMake-4d86c907f30424e6dc83827f1cd405e34abeef71.zip CMake-4d86c907f30424e6dc83827f1cd405e34abeef71.tar.gz CMake-4d86c907f30424e6dc83827f1cd405e34abeef71.tar.bz2 |
Merge branch 'upstream-KWSys' into update-kwsys
# By KWSys Upstream
* upstream-KWSys:
KWSys 2021-03-08 (5bfba5e1)
Diffstat (limited to 'Source/kwsys/Glob.hxx.in')
-rw-r--r-- | Source/kwsys/Glob.hxx.in | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/Source/kwsys/Glob.hxx.in b/Source/kwsys/Glob.hxx.in index e8474e2..fd39775 100644 --- a/Source/kwsys/Glob.hxx.in +++ b/Source/kwsys/Glob.hxx.in @@ -54,6 +54,9 @@ public: Glob(); ~Glob(); + Glob(const Glob&) = delete; + void operator=(const Glob&) = delete; + //! Find all files that match the pattern. bool FindFiles(const std::string& inexpr, GlobMessages* messages = nullptr); @@ -124,10 +127,6 @@ protected: std::vector<std::string> VisitedSymlinks; bool ListDirs; bool RecurseListDirs; - -private: - Glob(const Glob&) = delete; - void operator=(const Glob&) = delete; }; } // namespace @KWSYS_NAMESPACE@ |