diff options
author | KWSys Upstream <kwrobot@kitware.com> | 2019-02-12 13:34:34 (GMT) |
---|---|---|
committer | Brad King <brad.king@kitware.com> | 2019-02-12 13:35:11 (GMT) |
commit | f3999a21c85e6caf19feef7c90afce3969d9102a (patch) | |
tree | daee4659850a9609bfc14f05fb90f718315941fb /CommandLineArguments.hxx.in | |
parent | 8372c054729984a76e3e619b4c28865006d905d0 (diff) | |
download | CMake-f3999a21c85e6caf19feef7c90afce3969d9102a.zip CMake-f3999a21c85e6caf19feef7c90afce3969d9102a.tar.gz CMake-f3999a21c85e6caf19feef7c90afce3969d9102a.tar.bz2 |
KWSys 2019-02-12 (44676809)
Code extracted from:
https://gitlab.kitware.com/utils/kwsys.git
at commit 4467680959f82b755462a8530ef5d0dbd928d2d4 (master).
Upstream Shortlog
-----------------
Albert Astals Cid (1):
7d50c26d Delete some default constructors and assignment operators
Artur Ryt (1):
01089e4c Prefer back/data over dereferencing rbegin/begin iterator
Diffstat (limited to 'CommandLineArguments.hxx.in')
-rw-r--r-- | CommandLineArguments.hxx.in | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/CommandLineArguments.hxx.in b/CommandLineArguments.hxx.in index 31115e5..7db9015 100644 --- a/CommandLineArguments.hxx.in +++ b/CommandLineArguments.hxx.in @@ -62,6 +62,9 @@ public: CommandLineArguments(); ~CommandLineArguments(); + CommandLineArguments(const CommandLineArguments&) = delete; + CommandLineArguments& operator=(const CommandLineArguments&) = delete; + /** * Various argument types. */ |