We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a0a65ee commit 6c7fe98Copy full SHA for 6c7fe98
src/fterm_functions.cpp
@@ -526,7 +526,7 @@ std::size_t getColumnWidth (const FTermBuffer& tb)
526
return std::accumulate ( std::next(tb.begin())
527
, tb.end()
528
, tb.front().attr.bit.char_width
529
- , [] (std::size_t s, FChar c)
+ , [] (std::size_t s, const FChar& c)
530
{
531
return std::move(s) + c.attr.bit.char_width;
532
}
src/include/final/ftypes.h
@@ -33,6 +33,7 @@
33
#include <cstddef>
34
#include <cstring>
35
36
+#include <array>
37
#include <functional>
38
#include <limits>
39
#include <unordered_map>
0 commit comments