Minor MSVC porting tweaks.
This commit is contained in:
parent
e9d12ee586
commit
dc7b762a12
3 changed files with 7 additions and 0 deletions
|
@ -105,7 +105,10 @@
|
||||||
FG_USING_STD(cerr);
|
FG_USING_STD(cerr);
|
||||||
FG_USING_STD(cout);
|
FG_USING_STD(cout);
|
||||||
FG_USING_STD(endl);
|
FG_USING_STD(endl);
|
||||||
|
|
||||||
|
#ifndef _MSC_VER
|
||||||
FG_USING_STD(exit);
|
FG_USING_STD(exit);
|
||||||
|
#endif
|
||||||
|
|
||||||
bool check_float(string &token)
|
bool check_float(string &token)
|
||||||
{
|
{
|
||||||
|
|
|
@ -9,6 +9,7 @@
|
||||||
|
|
||||||
FG_USING_STD(list);
|
FG_USING_STD(list);
|
||||||
FG_USING_STD(string);
|
FG_USING_STD(string);
|
||||||
|
FG_USING_STD(getline);
|
||||||
FG_USING_STD(ifstream);
|
FG_USING_STD(ifstream);
|
||||||
|
|
||||||
#define DELIMITERS " \t"
|
#define DELIMITERS " \t"
|
||||||
|
|
|
@ -80,7 +80,10 @@ for information.
|
||||||
|
|
||||||
FG_USING_STD (cerr);
|
FG_USING_STD (cerr);
|
||||||
FG_USING_STD (endl);
|
FG_USING_STD (endl);
|
||||||
|
|
||||||
|
#ifndef _MSC_VER
|
||||||
FG_USING_STD (exit);
|
FG_USING_STD (exit);
|
||||||
|
#endif
|
||||||
|
|
||||||
void uiuc_warnings_errors(int errorCode, string line)
|
void uiuc_warnings_errors(int errorCode, string line)
|
||||||
{
|
{
|
||||||
|
|
Loading…
Reference in a new issue