From 0e1e2ad51549935a725c65171070fca1478f5e68 Mon Sep 17 00:00:00 2001 From: Emil Dotchevski Date: Sun, 12 Apr 2009 17:21:39 +0000 Subject: [PATCH] fixing an error that caused warnings in diagnostic_information.hpp [SVN r52355] --- include/boost/exception/diagnostic_information.hpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/include/boost/exception/diagnostic_information.hpp b/include/boost/exception/diagnostic_information.hpp index cea07df..2c66220 100644 --- a/include/boost/exception/diagnostic_information.hpp +++ b/include/boost/exception/diagnostic_information.hpp @@ -23,7 +23,7 @@ boost struct enable_boost_exception_overload { - typedef struct yes { char q[100]; }; + struct yes { char q[100]; }; typedef char no; static yes check(exception const *); static no check(...); @@ -34,7 +34,7 @@ boost struct enable_std_exception_overload { - typedef struct yes { char q[100]; }; + struct yes { char q[100]; }; typedef char no; static yes check(std::exception const *); static no check(...);