Rename Count to lowercase, make const

This commit is contained in:
King_DuckZ 2021-04-22 13:35:37 +02:00
parent 3124548314
commit 13bd166827
2 changed files with 6 additions and 6 deletions

View file

@ -27,7 +27,7 @@ namespace dhandy {
template <std::size_t N>
class Version {
public:
constexpr static std::size_t Count = N;
constexpr static const std::size_t count = N;
constexpr Version (const char* const ver, bool accept_less=false);