Skip to content
Snippets Groups Projects
Commit 6552b897 authored by Ansgar Burchardt's avatar Ansgar Burchardt
Browse files

[release] Use "0" instead of "nullptr" for GCC 4.4.

This closes FS#1651.
parent 797fbfa1
No related branches found
No related tags found
No related merge requests found
......@@ -80,7 +80,7 @@ namespace Dune
//! Construct from signed int
template<typename Signed>
bigunsignedint (Signed x, typename std::enable_if<std::is_integral<Signed>::value && std::is_signed<Signed>::value>::type* = nullptr);
bigunsignedint (Signed x, typename std::enable_if<std::is_integral<Signed>::value && std::is_signed<Signed>::value>::type* = 0);
//! Construct from unsigned int
bigunsignedint (std::uintmax_t x);
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment