diff options
author | Bent Bisballe Nyeng <deva@aasimon.org> | 2018-06-07 19:14:37 +0200 |
---|---|---|
committer | Bent Bisballe Nyeng <deva@aasimon.org> | 2018-06-07 19:20:09 +0200 |
commit | 33fbebb84ca2d179342c6660a557ffe35d2473e4 (patch) | |
tree | ed66f5373e612b972493a293a74576f2e1c309b1 /src/versionstr.h | |
parent | 93fe142f21e501a9ff12432d35fbf89b87135f9c (diff) |
Move default initialisation to constructor.
Diffstat (limited to 'src/versionstr.h')
-rw-r--r-- | src/versionstr.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/versionstr.h b/src/versionstr.h index 9fc2fcd..2a8a131 100644 --- a/src/versionstr.h +++ b/src/versionstr.h @@ -108,5 +108,5 @@ public: private: void set(const std::string& v); - std::array<size_t, 3> version = {0, 0, 0}; + std::array<size_t, 3> version; }; |