summaryrefslogtreecommitdiff
path: root/src/client.hh
diff options
context:
space:
mode:
authorMaxime Coste <mawww@kakoune.org>2019-10-17 22:48:22 +1100
committerMaxime Coste <mawww@kakoune.org>2019-10-17 22:48:22 +1100
commit3c34de7fe7db607fe2c0519471b8d3c4935ce717 (patch)
treed56eabe2b96ce448d48103931836d01e6ee34411 /src/client.hh
parenta5d662f7febe0eb0acba3b368ed94b82232bf681 (diff)
Remove explicit sizes from make_array calls
Diffstat (limited to 'src/client.hh')
-rw-r--r--src/client.hh2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/client.hh b/src/client.hh
index fd1cd1a6..b7351626 100644
--- a/src/client.hh
+++ b/src/client.hh
@@ -140,7 +140,7 @@ enum class Autoreload
constexpr auto enum_desc(Meta::Type<Autoreload>)
{
- return make_array<EnumDesc<Autoreload>, 5>({
+ return make_array<EnumDesc<Autoreload>>({
{ Autoreload::Yes, "yes" },
{ Autoreload::No, "no" },
{ Autoreload::Ask, "ask" },