From ae1023cdd0ac9e11f85e50ab5f5799ea4edfd7a0 Mon Sep 17 00:00:00 2001 From: Dave Abrahams Date: Wed, 10 Apr 2002 13:45:58 +0000 Subject: [PATCH] Suppress warnings for conforming compilers [SVN r13429] --- include/boost/type_traits/fwd.hpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/include/boost/type_traits/fwd.hpp b/include/boost/type_traits/fwd.hpp index 0ec280a..c58dd9c 100644 --- a/include/boost/type_traits/fwd.hpp +++ b/include/boost/type_traits/fwd.hpp @@ -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