diff options
author | Ken Martin <ken.martin@kitware.com> | 2002-08-23 19:13:49 (GMT) |
---|---|---|
committer | Ken Martin <ken.martin@kitware.com> | 2002-08-23 19:13:49 (GMT) |
commit | 13d4f89dfe5bbe51fca76f945b4819a3ced1c888 (patch) | |
tree | af7b70c21bdb61058895629f1faa3e122561968a /Source/cmVTKMakeInstantiatorCommand.cxx | |
parent | e1d5c0c72908cb4b104e36702ab6007ab4111dc3 (diff) | |
download | CMake-13d4f89dfe5bbe51fca76f945b4819a3ced1c888.zip CMake-13d4f89dfe5bbe51fca76f945b4819a3ced1c888.tar.gz CMake-13d4f89dfe5bbe51fca76f945b4819a3ced1c888.tar.bz2 |
compiler warnings
Diffstat (limited to 'Source/cmVTKMakeInstantiatorCommand.cxx')
-rw-r--r-- | Source/cmVTKMakeInstantiatorCommand.cxx | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/Source/cmVTKMakeInstantiatorCommand.cxx b/Source/cmVTKMakeInstantiatorCommand.cxx index ae02e4b..c54e043 100644 --- a/Source/cmVTKMakeInstantiatorCommand.cxx +++ b/Source/cmVTKMakeInstantiatorCommand.cxx @@ -193,7 +193,8 @@ cmVTKMakeInstantiatorCommand // Actually generate the code in the file. this->OldGenerateCreationFile(fout.GetStream(), - block*groupSize, thisBlockSize); + block*groupSize, + static_cast<int>(thisBlockSize)); } // Add the generated source file into the source list. |