Use cmsys::[io]fstream instead of cmsys_ios::[io]fstream.

Also use SystemTools::Fopen() instead of fopen().
This is to eventually support utf-8 filenames.
This commit is contained in:
Clinton Stimpson
2014-01-03 22:47:13 -07:00
committed by Brad King
parent 7fb2b80662
commit 5730710c86
75 changed files with 292 additions and 228 deletions

View File

@@ -13,6 +13,7 @@
#include "cmSystemTools.h"
#include "cmDependsJavaLexer.h"
#include <cmsys/FStream.hxx>
int cmDependsJava_yyparse( yyscan_t yyscanner );
@@ -412,7 +413,7 @@ int cmDependsJavaParserHelper::ParseFile(const char* file)
{
return 0;
}
std::ifstream ifs(file);
cmsys::ifstream ifs(file);
if ( !ifs )
{
return 0;