Commit 1cbe724c by Evgeniy Stepanov Committed by Jonathan Wakely

system_error.cc (generic_category_instance): Add initializer.

2013-04-21  Evgeniy Stepanov  <eugenis@google.com>

	* src/c++11/system_error.cc (generic_category_instance): Add
	initializer.
	(system_category_instance): Likewise.
	* src/c++11/future.cc (__fec): Likewise.

From-SVN: r198115
parent b10717eb
2013-04-21 Evgeniy Stepanov <eugenis@google.com>
* src/c++11/system_error.cc (generic_category_instance): Add
initializer.
(system_category_instance): Likewise.
* src/c++11/future.cc (__fec): Likewise.
2013-04-20 Jonathan Wakely <jwakely.gcc@gmail.com>
* doc/xml/manual/extensions.xml: Fix anachronism.
......
......@@ -60,7 +60,7 @@ namespace
const future_error_category&
__future_category_instance() noexcept
{
static const future_error_category __fec;
static const future_error_category __fec{};
return __fec;
}
}
......
......@@ -62,8 +62,8 @@ namespace
}
};
const generic_error_category generic_category_instance;
const system_error_category system_category_instance;
const generic_error_category generic_category_instance{};
const system_error_category system_category_instance{};
}
namespace std _GLIBCXX_VISIBILITY(default)
......
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