diff options
| author | Maxime Coste <mawww@kakoune.org> | 2019-10-17 22:48:22 +1100 |
|---|---|---|
| committer | Maxime Coste <mawww@kakoune.org> | 2019-10-17 22:48:22 +1100 |
| commit | 3c34de7fe7db607fe2c0519471b8d3c4935ce717 (patch) | |
| tree | d56eabe2b96ce448d48103931836d01e6ee34411 /src/string_utils.hh | |
| parent | a5d662f7febe0eb0acba3b368ed94b82232bf681 (diff) | |
Remove explicit sizes from make_array calls
Diffstat (limited to 'src/string_utils.hh')
| -rw-r--r-- | src/string_utils.hh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/string_utils.hh b/src/string_utils.hh index 9c31d767..52dd719c 100644 --- a/src/string_utils.hh +++ b/src/string_utils.hh @@ -147,7 +147,7 @@ enum class Quoting constexpr auto enum_desc(Meta::Type<Quoting>) { - return make_array<EnumDesc<Quoting>, 3>({ + return make_array<EnumDesc<Quoting>>({ { Quoting::Raw, "raw" }, { Quoting::Kakoune, "kakoune" }, { Quoting::Shell, "shell" } |
