|
Boost-Commit : |
Subject: [Boost-commit] svn:boost r52355 - trunk/boost/exception
From: emil_at_[hidden]
Date: 2009-04-12 13:21:40
Author: emildotchevski
Date: 2009-04-12 13:21:39 EDT (Sun, 12 Apr 2009)
New Revision: 52355
URL: http://svn.boost.org/trac/boost/changeset/52355
Log:
fixing an error that caused warnings in diagnostic_information.hpp
Text files modified:
trunk/boost/exception/diagnostic_information.hpp | 4 ++--
1 files changed, 2 insertions(+), 2 deletions(-)
Modified: trunk/boost/exception/diagnostic_information.hpp
==============================================================================
--- trunk/boost/exception/diagnostic_information.hpp (original)
+++ trunk/boost/exception/diagnostic_information.hpp 2009-04-12 13:21:39 EDT (Sun, 12 Apr 2009)
@@ -23,7 +23,7 @@
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 @@
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(...);
Boost-Commit list run by bdawes at acm.org, david.abrahams at rcn.com, gregod at cs.rpi.edu, cpdaniel at pacbell.net, john at johnmaddock.co.uk