De-constexpr a few UI constructors.

Because it was silly.
This commit is contained in:
Jared Boone
2016-04-22 11:18:35 -07:00
parent 61b5faf8b5
commit 27a1423309
5 changed files with 6 additions and 6 deletions

View File

@@ -51,12 +51,12 @@ private:
class Widget {
public:
constexpr Widget(
Widget(
) : parent_rect { }
{
}
constexpr Widget(
Widget(
Rect parent_rect
) : parent_rect { parent_rect }
{