summaryrefslogtreecommitdiffstats
path: root/Source/cmCustomCommandGenerator.h
diff options
context:
space:
mode:
authorDaniel Eiband <daniel.eiband@brainlab.com>2019-09-21 22:17:22 (GMT)
committerDaniel Eiband <daniel.eiband@brainlab.com>2019-09-22 07:51:20 (GMT)
commitc7c59dae82594557dc2fddc4ef881dafeaad076a (patch)
treef9ba032c61d023afb7a670ea365ae17109c85d18 /Source/cmCustomCommandGenerator.h
parentc12222db86859a5a5ce9163a5309bb0da10ec616 (diff)
downloadCMake-c7c59dae82594557dc2fddc4ef881dafeaad076a.zip
CMake-c7c59dae82594557dc2fddc4ef881dafeaad076a.tar.gz
CMake-c7c59dae82594557dc2fddc4ef881dafeaad076a.tar.bz2
cmCustomCommandGenerator: Replace generator expression member
Replace generator expression member variable by stack variable in the constructor.
Diffstat (limited to 'Source/cmCustomCommandGenerator.h')
-rw-r--r--Source/cmCustomCommandGenerator.h3
1 files changed, 0 insertions, 3 deletions
diff --git a/Source/cmCustomCommandGenerator.h b/Source/cmCustomCommandGenerator.h
index d614302..50f292e 100644
--- a/Source/cmCustomCommandGenerator.h
+++ b/Source/cmCustomCommandGenerator.h
@@ -10,7 +10,6 @@
#include <vector>
class cmCustomCommand;
-class cmGeneratorExpression;
class cmLocalGenerator;
class cmCustomCommandGenerator
@@ -20,7 +19,6 @@ class cmCustomCommandGenerator
cmLocalGenerator* LG;
bool OldStyle;
bool MakeVars;
- cmGeneratorExpression* GE;
cmCustomCommandLines CommandLines;
std::vector<std::vector<std::string>> EmulatorsWithArguments;
std::vector<std::string> Byproducts;
@@ -34,7 +32,6 @@ class cmCustomCommandGenerator
public:
cmCustomCommandGenerator(cmCustomCommand const& cc, std::string config,
cmLocalGenerator* lg);
- ~cmCustomCommandGenerator();
cmCustomCommandGenerator(const cmCustomCommandGenerator&) = delete;
cmCustomCommandGenerator& operator=(const cmCustomCommandGenerator&) =
delete;