From 31395bd98fc2974c2a53d06401d92fa0258bf1de Mon Sep 17 00:00:00 2001 From: John Maddock Date: Tue, 18 Nov 2008 08:51:43 +0000 Subject: [PATCH] Added __CODEGEARC__ warning suppression. [SVN r49822] --- include/boost/detail/workaround.hpp | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/include/boost/detail/workaround.hpp b/include/boost/detail/workaround.hpp index f04aae44..c7121880 100644 --- a/include/boost/detail/workaround.hpp +++ b/include/boost/detail/workaround.hpp @@ -45,6 +45,11 @@ #else #define __BORLANDC___WORKAROUND_GUARD 0 #endif +#ifndef __CODEGEARC__ +#define __CODEGEARC___WORKAROUND_GUARD 1 +#else +#define __CODEGEARC___WORKAROUND_GUARD 0 +#endif #ifndef _MSC_VER #define _MSC_VER_WORKAROUND_GUARD 1 #else