Commit 433f6725 by Jonathan Wakely Committed by Jonathan Wakely

re PR libstdc++/66902 (_S_debug_messages is unneccessary public)

	PR libstdc++/66902
	* src/c++11/debug.cc (_S_debug_messages): Make array const.

From-SVN: r227466
parent 010f20ee
2015-09-03 Jonathan Wakely <jwakely@redhat.com>
PR libstdc++/66902
* src/c++11/debug.cc (_S_debug_messages): Make array const.
PR libstdc++/66998
* include/experimental/functional (_Not_fn): Add exception
specifications and non-deduced return types.
......
......@@ -103,7 +103,7 @@ namespace
namespace __gnu_debug
{
static const char* _S_debug_messages[] =
const char* const _S_debug_messages[] =
{
// General Checks
"function requires a valid iterator range [%1.name;, %2.name;)",
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment