summaryrefslogtreecommitdiffstats
path: root/Source/cmCustomCommand.cxx
diff options
context:
space:
mode:
authorBrad King <brad.king@kitware.com>2006-09-27 20:20:47 (GMT)
committerBrad King <brad.king@kitware.com>2006-09-27 20:20:47 (GMT)
commit16cafd5cdf14fc83404abe4d1d61b975283beda9 (patch)
tree051f40bd1746f68a55a7ad3a335c6aad92288b20 /Source/cmCustomCommand.cxx
parente5549cff250a2715ea027fa1c2a79df2d80c9af2 (diff)
downloadCMake-16cafd5cdf14fc83404abe4d1d61b975283beda9.zip
CMake-16cafd5cdf14fc83404abe4d1d61b975283beda9.tar.gz
CMake-16cafd5cdf14fc83404abe4d1d61b975283beda9.tar.bz2
COMP: Fix init order.
Diffstat (limited to 'Source/cmCustomCommand.cxx')
-rw-r--r--Source/cmCustomCommand.cxx4
1 files changed, 2 insertions, 2 deletions
diff --git a/Source/cmCustomCommand.cxx b/Source/cmCustomCommand.cxx
index 94c08ec..621f7ca 100644
--- a/Source/cmCustomCommand.cxx
+++ b/Source/cmCustomCommand.cxx
@@ -31,8 +31,8 @@ cmCustomCommand::cmCustomCommand(const cmCustomCommand& r):
CommandLines(r.CommandLines),
Comment(r.Comment),
WorkingDirectory(r.WorkingDirectory),
- EscapeOldStyle(r.EscapeOldStyle),
- EscapeAllowMakeVars(r.EscapeAllowMakeVars)
+ EscapeAllowMakeVars(r.EscapeAllowMakeVars),
+ EscapeOldStyle(r.EscapeOldStyle)
{
this->Used = false;
}