summaryrefslogtreecommitdiff
path: root/src/display_buffer.hh
diff options
context:
space:
mode:
authorJustin Frank <justinpfrank@protonmail.com>2019-02-08 20:41:09 -0800
committerJustin Frank <justinpfrank@protonmail.com>2019-02-27 22:45:31 -0800
commit8178400f8dc70aaa5dcbef16f92e50c53d8dc8c1 (patch)
treee7834427a9ba22ef92a9d8a8c83241850b33302e /src/display_buffer.hh
parent29342836a6b60f46a0f5c4c938a8cd99e2e033ea (diff)
Fixed all reorder warnings
Diffstat (limited to 'src/display_buffer.hh')
-rw-r--r--src/display_buffer.hh2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/display_buffer.hh b/src/display_buffer.hh
index e86dcdb0..045a1cc8 100644
--- a/src/display_buffer.hh
+++ b/src/display_buffer.hh
@@ -28,7 +28,7 @@ public:
: m_type(Range), m_buffer(&buffer), m_range{begin, end} {}
DisplayAtom(String str, Face face)
- : m_type(Text), m_text(std::move(str)), face(face) {}
+ : face(face), m_type(Text), m_text(std::move(str)) {}
StringView content() const;
ColumnCount length() const;