1
0
Fork 0

Minor MSVC porting tweaks.

This commit is contained in:
curt 2001-01-11 04:54:33 +00:00
parent e9d12ee586
commit dc7b762a12
3 changed files with 7 additions and 0 deletions

View file

@ -105,7 +105,10 @@
FG_USING_STD(cerr);
FG_USING_STD(cout);
FG_USING_STD(endl);
#ifndef _MSC_VER
FG_USING_STD(exit);
#endif
bool check_float(string &token)
{

View file

@ -9,6 +9,7 @@
FG_USING_STD(list);
FG_USING_STD(string);
FG_USING_STD(getline);
FG_USING_STD(ifstream);
#define DELIMITERS " \t"

View file

@ -80,7 +80,10 @@ for information.
FG_USING_STD (cerr);
FG_USING_STD (endl);
#ifndef _MSC_VER
FG_USING_STD (exit);
#endif
void uiuc_warnings_errors(int errorCode, string line)
{