summaryrefslogtreecommitdiffstats
path: root/Source/cmCustomCommand.h
diff options
context:
space:
mode:
authorStephen Kelly <steveire@gmail.com>2015-06-07 08:44:59 (GMT)
committerStephen Kelly <steveire@gmail.com>2015-06-07 08:48:15 (GMT)
commit34e1d6db722b34bb6b4f7b8a7ea53a0bb61c5f58 (patch)
tree9a7a6ffa982db48eff914bf26cefabd1b19c5f1a /Source/cmCustomCommand.h
parent54cb76f299ebcdd07e59d3d0c61f1aa0ffe03a33 (diff)
downloadCMake-34e1d6db722b34bb6b4f7b8a7ea53a0bb61c5f58.zip
CMake-34e1d6db722b34bb6b4f7b8a7ea53a0bb61c5f58.tar.gz
CMake-34e1d6db722b34bb6b4f7b8a7ea53a0bb61c5f58.tar.bz2
cmCustomCommand: Re-arrange data layout.
Size goes from 240 to 224 bytes.
Diffstat (limited to 'Source/cmCustomCommand.h')
-rw-r--r--Source/cmCustomCommand.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/Source/cmCustomCommand.h b/Source/cmCustomCommand.h
index 0bfaef2..cc5501f 100644
--- a/Source/cmCustomCommand.h
+++ b/Source/cmCustomCommand.h
@@ -93,13 +93,13 @@ private:
std::vector<std::string> Byproducts;
std::vector<std::string> Depends;
cmCustomCommandLines CommandLines;
- bool HaveComment;
+ cmListFileBacktrace Backtrace;
+ ImplicitDependsList ImplicitDepends;
std::string Comment;
std::string WorkingDirectory;
+ bool HaveComment;
bool EscapeAllowMakeVars;
bool EscapeOldStyle;
- cmListFileBacktrace Backtrace;
- ImplicitDependsList ImplicitDepends;
bool UsesTerminal;
};