diff options
author | Bill Hoffman <bill.hoffman@kitware.com> | 2008-01-01 22:19:11 (GMT) |
---|---|---|
committer | Bill Hoffman <bill.hoffman@kitware.com> | 2008-01-01 22:19:11 (GMT) |
commit | ada4252c56b5e22442a62dd6c02499c1039c1d66 (patch) | |
tree | b0163feb4b4701ebc34875e18c8af3615b5c58dc /Source/cmake.cxx | |
parent | b479c6a8a98664c19eeaef40b71850c1f5315601 (diff) | |
download | CMake-ada4252c56b5e22442a62dd6c02499c1039c1d66.zip CMake-ada4252c56b5e22442a62dd6c02499c1039c1d66.tar.gz CMake-ada4252c56b5e22442a62dd6c02499c1039c1d66.tar.bz2 |
ENH: remove warning
Diffstat (limited to 'Source/cmake.cxx')
-rw-r--r-- | Source/cmake.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Source/cmake.cxx b/Source/cmake.cxx index 1317cc4..099a053 100644 --- a/Source/cmake.cxx +++ b/Source/cmake.cxx @@ -3822,7 +3822,7 @@ int cmake::VisualStudioLinkIncremental(std::vector<std::string>& args, { std::cout << "Create empty: " << manifestFile.c_str() << "\n"; } - std::ofstream fout(manifestFile.c_str()); + std::ofstream foutTmp(manifestFile.c_str()); } std::string resourceFile = manifestFile; resourceFile += ".res"; |