Start of some borland c support
This commit is contained in:
parent
b870ac8650
commit
be5d5cd52c
1 changed files with 19 additions and 1 deletions
|
@ -69,7 +69,7 @@
|
||||||
# define _FG_MEMBER_TEMPLATES
|
# define _FG_MEMBER_TEMPLATES
|
||||||
|
|
||||||
# endif
|
# endif
|
||||||
# else
|
# else
|
||||||
# error Time to upgrade. GNU compilers < 2.7 not supported
|
# error Time to upgrade. GNU compilers < 2.7 not supported
|
||||||
# endif
|
# endif
|
||||||
#endif
|
#endif
|
||||||
|
@ -81,6 +81,21 @@
|
||||||
# endif
|
# endif
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
#ifdef __BORLANDC__
|
||||||
|
|
||||||
|
# define STL_ALGORITHM <algorithm>
|
||||||
|
# define STL_FUNCTIONAL <functional>
|
||||||
|
# define STL_IOMANIP <iomanip>
|
||||||
|
# define STL_IOSTREAM <iostream>
|
||||||
|
# define STL_STDEXCEPT <stdexcept>
|
||||||
|
# define STL_STRING <string>
|
||||||
|
# define STL_STRSTREAM <strstream>
|
||||||
|
|
||||||
|
# define _FG_NO_DEFAULT_TEMPLATE_ARGS
|
||||||
|
# define NEEDNAMESPACESTD
|
||||||
|
|
||||||
|
#endif
|
||||||
|
|
||||||
#ifdef _FG_NEED_EXPLICIT
|
#ifdef _FG_NEED_EXPLICIT
|
||||||
# define explicit
|
# define explicit
|
||||||
#endif
|
#endif
|
||||||
|
@ -128,6 +143,9 @@ inline const_mem_fun_ref_t<_Ret,_Tp> mem_fun_ref(_Ret (_Tp::*__f)() const)
|
||||||
#endif // _FG_STL_CONFIG_H
|
#endif // _FG_STL_CONFIG_H
|
||||||
|
|
||||||
// $Log$
|
// $Log$
|
||||||
|
// Revision 1.3 1998/09/29 02:00:16 curt
|
||||||
|
// Start of some borland c support
|
||||||
|
//
|
||||||
// Revision 1.2 1998/09/10 19:07:04 curt
|
// Revision 1.2 1998/09/10 19:07:04 curt
|
||||||
// /Simulator/Objects/fragment.hxx
|
// /Simulator/Objects/fragment.hxx
|
||||||
// Nested fgFACE inside fgFRAGMENT since its not used anywhere else.
|
// Nested fgFACE inside fgFRAGMENT since its not used anywhere else.
|
||||||
|
|
Loading…
Reference in a new issue