summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDaniel Pfeifer <daniel@pfeifer-mail.de>2017-04-21 20:00:09 (GMT)
committerDaniel Pfeifer <daniel@pfeifer-mail.de>2017-04-21 20:00:09 (GMT)
commita28894e4d412000a4b9850fe9f41c7b1c1499a8d (patch)
treed2c4c93c2e71ef121735631c8d1c3572e67da6fb
parent765822add7896f256078006191b2629bcf778849 (diff)
downloadCMake-a28894e4d412000a4b9850fe9f41c7b1c1499a8d.zip
CMake-a28894e4d412000a4b9850fe9f41c7b1c1499a8d.tar.gz
CMake-a28894e4d412000a4b9850fe9f41c7b1c1499a8d.tar.bz2
cmCommandArgumentParserHelper: make noncopyable
-rw-r--r--Source/cmCommandArgumentParserHelper.h4
1 files changed, 4 insertions, 0 deletions
diff --git a/Source/cmCommandArgumentParserHelper.h b/Source/cmCommandArgumentParserHelper.h
index 2b65a5a..c0c1cd9 100644
--- a/Source/cmCommandArgumentParserHelper.h
+++ b/Source/cmCommandArgumentParserHelper.h
@@ -60,6 +60,10 @@ public:
char BSLASHVariable[3];
private:
+ cmCommandArgumentParserHelper(cmCommandArgumentParserHelper const&);
+ cmCommandArgumentParserHelper& operator=(
+ cmCommandArgumentParserHelper const&);
+
std::string::size_type InputBufferPos;
std::string InputBuffer;
std::vector<char> OutputBuffer;