From bbefde93796e6a4186b8fcbf626b8930dfd2b5d2 Mon Sep 17 00:00:00 2001 From: Maxime Coste Date: Sat, 25 Apr 2015 10:47:39 +0100 Subject: Move Colors enum class as NamedColor enum inside Color struct --- src/face.hh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/face.hh') diff --git a/src/face.hh b/src/face.hh index f0f9d34a..b5891c89 100644 --- a/src/face.hh +++ b/src/face.hh @@ -25,7 +25,7 @@ struct Face Color bg; Attribute attributes; - constexpr Face(Color fg = Colors::Default, Color bg = Colors::Default, + constexpr Face(Color fg = Color::Default, Color bg = Color::Default, Attribute attributes = Attribute::Normal) : fg{fg}, bg{bg}, attributes{attributes} {} }; -- cgit v1.2.3