Commit 10482a65 by Jonathan Wakely Committed by Jonathan Wakely

Qualify use of std::declval to avoid ADL

	* include/experimental/propagate_const (element_type): Qualify
	declval.

From-SVN: r241129
parent f49adbb8
2016-10-13 Jonathan Wakely <jwakely@redhat.com>
* include/experimental/propagate_const (element_type): Qualify
declval.
* testsuite/26_numerics/random/default_random_engine.cc: Use VERIFY
instead of assert.
......
......@@ -63,7 +63,7 @@ _GLIBCXX_BEGIN_NAMESPACE_VERSION
class propagate_const
{
public:
typedef remove_reference_t<decltype(*declval<_Tp&>())> element_type;
typedef remove_reference_t<decltype(*std::declval<_Tp&>())> element_type;
private:
template <typename _Up>
......
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