summaryrefslogtreecommitdiffstats
path: root/Source/cmExportCommand.h
diff options
context:
space:
mode:
authorDaniel Pfeifer <daniel@pfeifer-mail.de>2016-12-25 22:27:48 (GMT)
committerDaniel Pfeifer <daniel@pfeifer-mail.de>2017-02-13 19:48:29 (GMT)
commit5396bc92d0162fa9a9462e15ccaae8764da8ff98 (patch)
tree7b6ab8f2a0b7a9cbd57cb57d3ba168dd6cfb91b1 /Source/cmExportCommand.h
parent38bfe65eba21c697d05e8bed79635fc125cdac17 (diff)
downloadCMake-5396bc92d0162fa9a9462e15ccaae8764da8ff98.zip
CMake-5396bc92d0162fa9a9462e15ccaae8764da8ff98.tar.gz
CMake-5396bc92d0162fa9a9462e15ccaae8764da8ff98.tar.bz2
cmCommand: remove member Helper
The Helper member is used in a single derived class only. Remove it from the base class to the only place where it is used.
Diffstat (limited to 'Source/cmExportCommand.h')
-rw-r--r--Source/cmExportCommand.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/Source/cmExportCommand.h b/Source/cmExportCommand.h
index 99dac7d..a0224d0 100644
--- a/Source/cmExportCommand.h
+++ b/Source/cmExportCommand.h
@@ -41,6 +41,7 @@ public:
std::string GetName() const CM_OVERRIDE { return "export"; }
private:
+ cmCommandArgumentsHelper Helper;
cmCommandArgumentGroup ArgumentGroup;
cmCAStringVector Targets;
cmCAEnabler Append;