Skip to content
Snippets Groups Projects
Commit eb6820b6 authored by Sean McBride's avatar Sean McBride Committed by Brad King
Browse files

Glob: Explicitly delete copy construction and assignment

parent a3263389
No related branches found
No related tags found
No related merge requests found
......@@ -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@
......
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