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/normal.cc | |
| parent | a5d662f7febe0eb0acba3b368ed94b82232bf681 (diff) | |
Remove explicit sizes from make_array calls
Diffstat (limited to 'src/normal.cc')
| -rw-r--r-- | src/normal.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/normal.cc b/src/normal.cc index b4bb0334..34352151 100644 --- a/src/normal.cc +++ b/src/normal.cc @@ -40,7 +40,7 @@ enum class SelectMode constexpr auto enum_desc(Meta::Type<SelectMode>) { - return make_array<EnumDesc<SelectMode>, 3>({ + return make_array<EnumDesc<SelectMode>>({ { SelectMode::Replace, "replace" }, { SelectMode::Extend, "extend" }, { SelectMode::Append, "append" }, |
