diff options
| author | Maxime Coste <frrrwww@gmail.com> | 2015-04-25 10:47:39 +0100 |
|---|---|---|
| committer | Maxime Coste <frrrwww@gmail.com> | 2015-04-25 10:47:39 +0100 |
| commit | bbefde93796e6a4186b8fcbf626b8930dfd2b5d2 (patch) | |
| tree | 2b57fd1d9646ad12bb4cb48cdbb2400e763b5f32 /src/face.hh | |
| parent | dc46eda2794082dcb5583fdcb65f5b48e32960ac (diff) | |
Move Colors enum class as NamedColor enum inside Color struct
Diffstat (limited to 'src/face.hh')
| -rw-r--r-- | src/face.hh | 2 |
1 files changed, 1 insertions, 1 deletions
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} {} }; |
