diff options
author | Brad King <brad.king@kitware.com> | 2002-08-16 13:45:34 (GMT) |
---|---|---|
committer | Brad King <brad.king@kitware.com> | 2002-08-16 13:45:34 (GMT) |
commit | f7b1a90256a3e7d94cbb58b595eee5190e8958ba (patch) | |
tree | 3d7309eb70a950a2e287e7930453db37d1b9837c /Source/cmVTKMakeInstantiatorCommand.cxx | |
parent | 7bd3a1e702b1739040bb51eba96b4afb8ffb1462 (diff) | |
download | CMake-f7b1a90256a3e7d94cbb58b595eee5190e8958ba.zip CMake-f7b1a90256a3e7d94cbb58b595eee5190e8958ba.tar.gz CMake-f7b1a90256a3e7d94cbb58b595eee5190e8958ba.tar.bz2 |
ERR: unsigned int -> size_t.
Diffstat (limited to 'Source/cmVTKMakeInstantiatorCommand.cxx')
-rw-r--r-- | Source/cmVTKMakeInstantiatorCommand.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Source/cmVTKMakeInstantiatorCommand.cxx b/Source/cmVTKMakeInstantiatorCommand.cxx index 0c6c21a..2266f8e 100644 --- a/Source/cmVTKMakeInstantiatorCommand.cxx +++ b/Source/cmVTKMakeInstantiatorCommand.cxx @@ -187,7 +187,7 @@ cmVTKMakeInstantiatorCommand { cmGeneratedFileStream fout(fullName.c_str()); - unsigned int thisBlockSize = + size_t thisBlockSize = (block < numFullBlocks)? groupSize:lastBlockSize; // Actually generate the code in the file. |