diff options
author | Bill Hoffman <bill.hoffman@kitware.com> | 2002-03-13 15:25:11 (GMT) |
---|---|---|
committer | Bill Hoffman <bill.hoffman@kitware.com> | 2002-03-13 15:25:11 (GMT) |
commit | 809b32fe59ee9923eebbcfc373d9eaab158083e9 (patch) | |
tree | cbb36213252d97bf3f7d21b301b4f65aa7a5342c /Source/cmFLTKWrapUICommand.cxx | |
parent | 83a0759e479ee0718296a1bb8f6fb26e1b13500a (diff) | |
download | CMake-809b32fe59ee9923eebbcfc373d9eaab158083e9.zip CMake-809b32fe59ee9923eebbcfc373d9eaab158083e9.tar.gz CMake-809b32fe59ee9923eebbcfc373d9eaab158083e9.tar.bz2 |
ENH: remove several compiler warnings
Diffstat (limited to 'Source/cmFLTKWrapUICommand.cxx')
-rw-r--r-- | Source/cmFLTKWrapUICommand.cxx | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Source/cmFLTKWrapUICommand.cxx b/Source/cmFLTKWrapUICommand.cxx index d164907..f78a1ff 100644 --- a/Source/cmFLTKWrapUICommand.cxx +++ b/Source/cmFLTKWrapUICommand.cxx @@ -101,14 +101,14 @@ void cmFLTKWrapUICommand::FinalPass() { // first we add the rules for all the .fl to .h and .cxx files - int lastHeadersClass = m_GeneratedHeadersClasses.size(); + size_t lastHeadersClass = m_GeneratedHeadersClasses.size(); std::string fluid_exe = "${FLTK_FLUID_EXE}"; std::string outputGUIDirectory = m_Makefile->GetCurrentOutputDirectory(); // Generate code for all the .fl files - for(int classNum = 0; classNum < lastHeadersClass; classNum++) + for(size_t classNum = 0; classNum < lastHeadersClass; classNum++) { // set up .fl to .h and .cxx command std::string hres = outputGUIDirectory; |