From 64e5115138a6246aec38ecf0c97badb3f9e07b5c Mon Sep 17 00:00:00 2001 From: Dave Abrahams Date: Mon, 3 Dec 2001 21:48:54 +0000 Subject: [PATCH] Fixed spelling error ing gcc-3.0 bug workaround [SVN r11888] --- include/boost/operators.hpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/boost/operators.hpp b/include/boost/operators.hpp index 0cb0385..bd571ec 100644 --- a/include/boost/operators.hpp +++ b/include/boost/operators.hpp @@ -88,7 +88,7 @@ namespace boost { namespace detail { // Helmut Zeisel, empty base class optimization bug with GCC 3.0.0 -#if defined(__GNUCC__) && __GNUC__==3 && __GNUC_MINOR__==0 && __GNU_PATCHLEVEL__==0 +#if defined(__GNUC__) && __GNUC__==3 && __GNUC_MINOR__==0 && __GNU_PATCHLEVEL__==0 class empty_base { bool dummy; };