summaryrefslogtreecommitdiffstats
path: root/Source
diff options
context:
space:
mode:
authorAndy Cedilnik <andy.cedilnik@kitware.com>2003-02-04 14:50:20 (GMT)
committerAndy Cedilnik <andy.cedilnik@kitware.com>2003-02-04 14:50:20 (GMT)
commitd55033b4c122434cb031a33ce9c0d14ef43e150c (patch)
tree4bc2d1ff2dd6a148598bfcf1ea39acc673129202 /Source
parentb35814d65e6856b3bfc880039709ea4f10b6fcbd (diff)
downloadCMake-d55033b4c122434cb031a33ce9c0d14ef43e150c.zip
CMake-d55033b4c122434cb031a33ce9c0d14ef43e150c.tar.gz
CMake-d55033b4c122434cb031a33ce9c0d14ef43e150c.tar.bz2
Oops, std namespace
Diffstat (limited to 'Source')
-rw-r--r--Source/cmVTKWrapJavaCommand.cxx2
1 files changed, 1 insertions, 1 deletions
diff --git a/Source/cmVTKWrapJavaCommand.cxx b/Source/cmVTKWrapJavaCommand.cxx
index c1ed5d2..c6f8c35 100644
--- a/Source/cmVTKWrapJavaCommand.cxx
+++ b/Source/cmVTKWrapJavaCommand.cxx
@@ -52,7 +52,7 @@ bool cmVTKWrapJavaCommand::InitialPass(std::vector<std::string> const& argsIn)
std::string resultDirectory = "${VTK_JAVA_HOME}";
std::string res = m_Makefile->GetCurrentOutputDirectory();
std::string depFileName = res + "/JavaDependencies.cmake";
- ofstream depFile(depFileName.c_str());
+ std::ofstream depFile(depFileName.c_str());
depFile << "# This file is automatically generated by CMake VTK_WRAP_JAVA"
<< std::endl << std::endl;
depFile << "SET(VTK_JAVA_DEPENDENCIES ${VTK_JAVA_DEPENDENCIES}" << std::endl;