$include_dir="/home/hyper-archives/boost-commit/include"; include("$include_dir/msg-header.inc") ?>
Subject: [Boost-commit] svn:boost r80374 - trunk/boost
From: antoshkka_at_[hidden]
Date: 2012-09-03 13:06:41
Author: apolukhin
Date: 2012-09-03 13:06:40 EDT (Mon, 03 Sep 2012)
New Revision: 80374
URL: http://svn.boost.org/trac/boost/changeset/80374
Log:
Added missing const modifier
Text files modified:
trunk/boost/lexical_cast.hpp | 2 +-
1 files changed, 1 insertions(+), 1 deletions(-)
Modified: trunk/boost/lexical_cast.hpp
==============================================================================
--- trunk/boost/lexical_cast.hpp (original)
+++ trunk/boost/lexical_cast.hpp 2012-09-03 13:06:40 EDT (Mon, 03 Sep 2012)
@@ -113,7 +113,7 @@
}
#ifndef BOOST_NO_NOEXCEPT
- virtual const char *what() noexcept
+ virtual const char *what() const noexcept
#else
virtual const char *what() const throw()
#endif