libstdc++/66902 Make _S_debug_messages static.

PR libstdc++/66902
	* src/c++11/debug.cc (_S_debug_messages): Give internal linkage.

From-SVN: r227228
This commit is contained in:
Jonathan Wakely 2015-08-26 21:22:58 +01:00 committed by Jonathan Wakely
parent 8a256400f5
commit e41fd1f067
2 changed files with 6 additions and 1 deletions

View File

@ -1,3 +1,8 @@
2015-08-26 Jonathan Wakely <jwakely@redhat.com>
PR libstdc++/66902
* src/c++11/debug.cc (_S_debug_messages): Give internal linkage.
2015-08-24 François Dumont <fdumont@gcc.gnu.org>
PR libstdc++/60519

View File

@ -103,7 +103,7 @@ namespace
namespace __gnu_debug
{
const char* _S_debug_messages[] =
static const char* _S_debug_messages[] =
{
// General Checks
"function requires a valid iterator range [%1.name;, %2.name;)",