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

Merge topic 'Glob-EqDelete'


eb6820b6 Glob: Explicitly delete copy construction and assignment

Acked-by: default avatarKitware Robot <kwrobot@kitware.com>
Merge-request: !193
parents a3263389 eb6820b6
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