summaryrefslogtreecommitdiffstats
path: root/Source/cmCustomCommand.cxx
diff options
context:
space:
mode:
authorKen Martin <ken.martin@kitware.com>2003-06-03 18:55:20 (GMT)
committerKen Martin <ken.martin@kitware.com>2003-06-03 18:55:20 (GMT)
commit0b3b21fa63ed137a3fa534c379b2995583c40e24 (patch)
tree61705c05b2650de91dadbb6a67cc93574ef71d5c /Source/cmCustomCommand.cxx
parent12d99416c194f3c8d1f2f321213506514d0616c8 (diff)
downloadCMake-0b3b21fa63ed137a3fa534c379b2995583c40e24.zip
CMake-0b3b21fa63ed137a3fa534c379b2995583c40e24.tar.gz
CMake-0b3b21fa63ed137a3fa534c379b2995583c40e24.tar.bz2
warning fixes
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 378505e..5facc4c 100644
--- a/Source/cmCustomCommand.cxx
+++ b/Source/cmCustomCommand.cxx
@@ -48,8 +48,8 @@ cmCustomCommand::cmCustomCommand(const cmCustomCommand& r):
m_Command(r.m_Command),
m_Arguments(r.m_Arguments),
m_Comment(r.m_Comment),
- m_Depends(r.m_Depends),
- m_Output(r.m_Output)
+ m_Output(r.m_Output),
+ m_Depends(r.m_Depends)
{
}