summaryrefslogtreecommitdiff
path: root/src/color.hh
diff options
context:
space:
mode:
authorMaxime Coste <mawww@kakoune.org>2017-09-12 11:31:57 +0800
committerMaxime Coste <mawww@kakoune.org>2017-09-12 11:31:57 +0800
commit63b1d0c353ad8762c4eb5d7e494baf6e163ca1f7 (patch)
treec83ff841f4957875fae8cea2ad9c844be7a2a8d4 /src/color.hh
parent90ab5ff93b7d4b67fc74a7e48c1c133c36f77f40 (diff)
Rename some string conversion function to the common 'to_string'
Diffstat (limited to 'src/color.hh')
-rw-r--r--src/color.hh2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/color.hh b/src/color.hh
index b4c75304..d8a2fcce 100644
--- a/src/color.hh
+++ b/src/color.hh
@@ -48,7 +48,7 @@ constexpr bool operator!=(Color lhs, Color rhs)
}
Color str_to_color(StringView color);
-String color_to_str(Color color);
+String to_string(Color color);
String option_to_string(Color color);
void option_from_string(StringView str, Color& color);