Skip to content
Snippets Groups Projects
Commit 0ef3b47a authored by graeser's avatar graeser
Browse files

Remove constexpr from non-const methods

Non-const constexpr is not supported by gcc-4.9
parent eea340b7
No related branches found
No related tags found
No related merge requests found
Pipeline #
......@@ -41,7 +41,7 @@ public:
return t_;
}
constexpr Type& get()
Type& get()
{
return t_;
}
......@@ -72,7 +72,7 @@ public:
return *t_;
}
constexpr Type& get()
Type& get()
{
return *t_;
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment