Skip to content
Snippets Groups Projects
Commit 6e171887 authored by Brad King's avatar Brad King Committed by Kitware Robot
Browse files

Merge topic 'Glob-copy-delete-public'


3ba8a6de Glob: Change deleted ctor and operator= from private to public

Acked-by: default avatarKitware Robot <kwrobot@kitware.com>
Merge-request: !205
parents dda7a943 3ba8a6de
No related branches found
No related tags found
No related merge requests found
......@@ -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@
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment