updated boost on windows
This commit is contained in:
@@ -12,12 +12,13 @@
|
||||
#ifndef BOOST_ASSIGN_ASSIGNMENT_EXCEPTION_HPP
|
||||
#define BOOST_ASSIGN_ASSIGNMENT_EXCEPTION_HPP
|
||||
|
||||
#if defined(_MSC_VER)
|
||||
#include <boost/config.hpp>
|
||||
#include <exception>
|
||||
|
||||
#if defined(BOOST_HAS_PRAGMA_ONCE)
|
||||
# pragma once
|
||||
#endif
|
||||
|
||||
#include <exception>
|
||||
|
||||
namespace boost
|
||||
{
|
||||
namespace assign
|
||||
@@ -28,12 +29,12 @@ namespace boost
|
||||
assignment_exception( const char* _what )
|
||||
: what_( _what )
|
||||
{ }
|
||||
|
||||
virtual const char* what() const throw()
|
||||
|
||||
virtual const char* what() const BOOST_NOEXCEPT_OR_NOTHROW
|
||||
{
|
||||
return what_;
|
||||
}
|
||||
|
||||
|
||||
private:
|
||||
const char* what_;
|
||||
};
|
||||
|
||||
Reference in New Issue
Block a user