fixing an error that caused warnings in diagnostic_information.hpp

[SVN r52364]
This commit is contained in:
Emil Dotchevski
2009-04-13 05:41:31 +00:00
parent 4007a8a460
commit f3b51ae5d1
2 changed files with 3 additions and 3 deletions

View File

@ -1,4 +1,4 @@
//Copyright (c) 2006-2008 Emil Dotchevski and Reverge Studios, Inc. //Copyright (c) 2006-2009 Emil Dotchevski and Reverge Studios, Inc.
//Distributed under the Boost Software License, Version 1.0. (See accompanying //Distributed under the Boost Software License, Version 1.0. (See accompanying
//file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt) //file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)

View File

@ -23,7 +23,7 @@ boost
struct struct
enable_boost_exception_overload enable_boost_exception_overload
{ {
typedef struct yes { char q[100]; }; struct yes { char q[100]; };
typedef char no; typedef char no;
static yes check(exception const *); static yes check(exception const *);
static no check(...); static no check(...);
@ -34,7 +34,7 @@ boost
struct struct
enable_std_exception_overload enable_std_exception_overload
{ {
typedef struct yes { char q[100]; }; struct yes { char q[100]; };
typedef char no; typedef char no;
static yes check(std::exception const *); static yes check(std::exception const *);
static no check(...); static no check(...);