Suppress warnings for conforming compilers

[SVN r13429]
This commit is contained in:
Dave Abrahams
2002-04-10 13:45:58 +00:00
parent e87486cf7b
commit ae1023cdd0

View File

@ -81,10 +81,10 @@
//
// whenever we have a conversion function with elipses
// it needs to be declared _cdecl to suppress compiler
// it needs to be declared __cdecl to suppress compiler
// warnings from MS and Borland compilers:
#if defined(BOOST_MSVC) || defined(__BORLANDC__)
#define BOOST_TT_DECL _cdecl
#define BOOST_TT_DECL __cdecl
#else
#define BOOST_TT_DECL
#endif