summaryrefslogtreecommitdiffstats
path: root/Source/cmMakefile.h
diff options
context:
space:
mode:
Diffstat (limited to 'Source/cmMakefile.h')
-rw-r--r--Source/cmMakefile.h10
1 files changed, 2 insertions, 8 deletions
diff --git a/Source/cmMakefile.h b/Source/cmMakefile.h
index aa70c72..0ade8e1 100644
--- a/Source/cmMakefile.h
+++ b/Source/cmMakefile.h
@@ -935,14 +935,8 @@ private:
// stack of list files being read
std::vector<std::string> ListFileStack;
- // stack of commands being invoked.
- struct CallStackEntry
- {
- cmListFileContext const* Context;
- cmExecutionStatus* Status;
- };
- typedef std::vector<CallStackEntry> CallStackType;
- CallStackType CallStack;
+ std::vector<cmListFileContext const*> ContextStack;
+ std::vector<cmExecutionStatus*> ExecutionStatusStack;
friend class cmMakefileCall;
std::vector<cmTarget*> ImportedTargetsOwned;