summaryrefslogtreecommitdiff
path: root/src/util/TextTable.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/util/TextTable.cpp')
-rw-r--r--src/util/TextTable.cpp10
1 files changed, 6 insertions, 4 deletions
diff --git a/src/util/TextTable.cpp b/src/util/TextTable.cpp
index 53014aa4..c7fd17f2 100644
--- a/src/util/TextTable.cpp
+++ b/src/util/TextTable.cpp
@@ -1,4 +1,4 @@
-// Copyright (C) 2021 Joel Rosdahl and other contributors
+// Copyright (C) 2021-2023 Joel Rosdahl and other contributors
//
// See doc/AUTHORS.adoc for a complete list of contributors.
//
@@ -115,9 +115,11 @@ TextTable::render() const
return result;
}
-TextTable::Cell::Cell(const std::string& text)
- : m_text(text),
- m_right_align(false)
+TextTable::Cell::Cell(const std::string& text) : m_text(text)
+{
+}
+
+TextTable::Cell::Cell(std::string_view text) : Cell(std::string(text))
{
}