From 93fe142f21e501a9ff12432d35fbf89b87135f9c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Andr=C3=A9=20Nusser?= Date: Thu, 7 Jun 2018 17:26:49 +0200 Subject: Actually remove throw in versionstr and replace C-array by std::array. --- src/versionstr.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src/versionstr.h') diff --git a/src/versionstr.h b/src/versionstr.h index 48eb40a..9fc2fcd 100644 --- a/src/versionstr.h +++ b/src/versionstr.h @@ -1,5 +1,4 @@ /* -*- Mode: C++; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*- */ -/* vim: set et sw=2 ts=2: */ /*************************************************************************** * versionstr.h * @@ -27,6 +26,7 @@ */ #pragma once +#include #include // Workaround - major, minor and patch are defined as macros when using @@ -108,5 +108,5 @@ public: private: void set(const std::string& v); - size_t version[3]; + std::array version = {0, 0, 0}; }; -- cgit v1.2.3