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
Branches
No related tags found
No related merge requests found
...@@ -41,7 +41,7 @@ public: ...@@ -41,7 +41,7 @@ public:
return t_; return t_;
} }
constexpr Type& get() Type& get()
{ {
return t_; return t_;
} }
...@@ -72,7 +72,7 @@ public: ...@@ -72,7 +72,7 @@ public:
return *t_; return *t_;
} }
constexpr Type& get() Type& get()
{ {
return *t_; return *t_;
} }
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment