diff options
author | Bill Hoffman <bill.hoffman@kitware.com> | 2002-04-25 11:59:57 (GMT) |
---|---|---|
committer | Bill Hoffman <bill.hoffman@kitware.com> | 2002-04-25 11:59:57 (GMT) |
commit | 945c4a8b5b2e0650478f6bc67029d9481207702d (patch) | |
tree | ff00b9bb59ecaae535ad58542420488f719fabe3 /Source/ccommand.cxx | |
parent | 0c948312edfee7cf3e44c167bdc20f86b8f60266 (diff) | |
download | CMake-945c4a8b5b2e0650478f6bc67029d9481207702d.zip CMake-945c4a8b5b2e0650478f6bc67029d9481207702d.tar.gz CMake-945c4a8b5b2e0650478f6bc67029d9481207702d.tar.bz2 |
WAR: remove warnings for .NET compiler
Diffstat (limited to 'Source/ccommand.cxx')
-rw-r--r-- | Source/ccommand.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Source/ccommand.cxx b/Source/ccommand.cxx index b51939a..d9f2ccf 100644 --- a/Source/ccommand.cxx +++ b/Source/ccommand.cxx @@ -102,7 +102,7 @@ int main(int ac, char** av) double clocks_per_sec = (double)CLOCKS_PER_SEC; std::cout << "Elapsed time: " - << (time_t)(time_finish - time_start) << " s. (time)" + << (long)(time_finish - time_start) << " s. (time)" << ", " << (double)(clock_finish - clock_start) / clocks_per_sec << " s. (clock)" |