compilation fixes for C++ standard library
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@15294 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
@@ -409,7 +409,7 @@ void ReadTexReferences(char *filename)
|
|||||||
if (!wxFileExists(filename))
|
if (!wxFileExists(filename))
|
||||||
return;
|
return;
|
||||||
|
|
||||||
wxSTD ifstream istr(filename, ios::in);
|
wxSTD ifstream istr(filename, wxSTD ios::in);
|
||||||
|
|
||||||
if (istr.bad()) return;
|
if (istr.bad()) return;
|
||||||
|
|
||||||
@@ -585,7 +585,7 @@ bool ReadBib(char *filename)
|
|||||||
return FALSE;
|
return FALSE;
|
||||||
|
|
||||||
char buf[300];
|
char buf[300];
|
||||||
wxSTD ifstream istr(filename, ios::in);
|
wxSTD ifstream istr(filename, wxSTD ios::in);
|
||||||
if (istr.bad()) return FALSE;
|
if (istr.bad()) return FALSE;
|
||||||
|
|
||||||
BibLine = 1;
|
BibLine = 1;
|
||||||
@@ -1314,7 +1314,7 @@ bool ReadCustomMacros(char *filename)
|
|||||||
if (!wxFileExists(filename))
|
if (!wxFileExists(filename))
|
||||||
return FALSE;
|
return FALSE;
|
||||||
|
|
||||||
wxSTD ifstream istr(filename, ios::in);
|
wxSTD ifstream istr(filename, wxSTD ios::in);
|
||||||
|
|
||||||
if (istr.bad()) return FALSE;
|
if (istr.bad()) return FALSE;
|
||||||
|
|
||||||
|
Reference in New Issue
Block a user