Oops, std namespace

This commit is contained in:
Andy Cedilnik 2003-02-04 09:50:20 -05:00
parent b35814d65e
commit d55033b4c1
1 changed files with 1 additions and 1 deletions

View File

@ -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;