diff options
author | David Cole <david.cole@kitware.com> | 2010-05-27 18:49:38 (GMT) |
---|---|---|
committer | David Cole <david.cole@kitware.com> | 2010-05-27 18:49:38 (GMT) |
commit | 0efa5f3747d604b117119561949b3e70548ba478 (patch) | |
tree | 4a40f1b69646e2627f9189636a9f61318b41bdf4 /Source/cmFileCommand.cxx | |
parent | f67139ae6fdf964218a93e5506722a367e781c6f (diff) | |
download | CMake-0efa5f3747d604b117119561949b3e70548ba478.zip CMake-0efa5f3747d604b117119561949b3e70548ba478.tar.gz CMake-0efa5f3747d604b117119561949b3e70548ba478.tar.bz2 |
Fix unused variable warning in new code.
Diffstat (limited to 'Source/cmFileCommand.cxx')
-rw-r--r-- | Source/cmFileCommand.cxx | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/Source/cmFileCommand.cxx b/Source/cmFileCommand.cxx index 539ed0f..8260cc7 100644 --- a/Source/cmFileCommand.cxx +++ b/Source/cmFileCommand.cxx @@ -2510,6 +2510,9 @@ namespace{ cURLProgressHelper *helper = reinterpret_cast<cURLProgressHelper *>(clientp); + static_cast<void>(ultotal); + static_cast<void>(ulnow); + std::string status; if (helper->UpdatePercentage(dlnow, dltotal, status)) { |