mirror of
https://github.com/polybar/polybar.git
synced 2026-02-06 12:25:34 +00:00
For some reason when passing some non-const strings to convert, the convert(T&& arg) method was used instead of the one specialized for strings. This caused an error in clang because you can't pass objects with non-trivial types to varargs functions. The best solution I found was to just add a specialized function for non-const strings.