Boost logo

Boost-Commit :

Subject: [Boost-commit] svn:boost r52364 - branches/release/boost/exception
From: emil_at_[hidden]
Date: 2009-04-13 01:41:32


Author: emildotchevski
Date: 2009-04-13 01:41:31 EDT (Mon, 13 Apr 2009)
New Revision: 52364
URL: http://svn.boost.org/trac/boost/changeset/52364

Log:
fixing an error that caused warnings in diagnostic_information.hpp
Text files modified:
   branches/release/boost/exception/current_exception_cast.hpp | 2 +-
   branches/release/boost/exception/diagnostic_information.hpp | 4 ++--
   2 files changed, 3 insertions(+), 3 deletions(-)

Modified: branches/release/boost/exception/current_exception_cast.hpp
==============================================================================
--- branches/release/boost/exception/current_exception_cast.hpp (original)
+++ branches/release/boost/exception/current_exception_cast.hpp 2009-04-13 01:41:31 EDT (Mon, 13 Apr 2009)
@@ -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
 //file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)

Modified: branches/release/boost/exception/diagnostic_information.hpp
==============================================================================
--- branches/release/boost/exception/diagnostic_information.hpp (original)
+++ branches/release/boost/exception/diagnostic_information.hpp 2009-04-13 01:41:31 EDT (Mon, 13 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