diff options
author | Boris Kolpackov <boris@codesynthesis.com> | 2011-03-02 11:26:56 +0200 |
---|---|---|
committer | Boris Kolpackov <boris@codesynthesis.com> | 2011-03-02 11:26:56 +0200 |
commit | ff1607744c63d94126ae05fee042cd490fc0bf1a (patch) | |
tree | b00e258b3141da98aa0cff786f6956bfe4bcf51d | |
parent | 7ba4c3065f8df144b2643c8e21e142b4b89eeb65 (diff) |
Get rid of unnecessary qualifications
-rw-r--r-- | odb/boost/date-time/exceptions.hxx | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/odb/boost/date-time/exceptions.hxx b/odb/boost/date-time/exceptions.hxx index 4d064cb..3a9a929 100644 --- a/odb/boost/date-time/exceptions.hxx +++ b/odb/boost/date-time/exceptions.hxx @@ -17,13 +17,13 @@ namespace odb { namespace date_time { - struct LIBODB_BOOST_EXPORT special_value: odb::boost::exception + struct LIBODB_BOOST_EXPORT special_value: exception { virtual const char* what () const throw (); }; - struct LIBODB_BOOST_EXPORT value_out_of_range : odb::boost::exception + struct LIBODB_BOOST_EXPORT value_out_of_range: exception { virtual const char* what () const throw (); |