From 4aa8eb029737f536a6ad3b1e3eaf296a68a3b926 Mon Sep 17 00:00:00 2001 From: Kitsune Ral Date: Sun, 15 Oct 2017 15:36:14 +0200 Subject: Fixed building with clang+libcpp (used on OS X) libcpp has pessimistic definition of array that only engages constexpr in C++14 mode and newer; so one cannot use std::array<> in constexpr code. --- joinstate.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/joinstate.h b/joinstate.h index cfdb90f2..d6c374d2 100644 --- a/joinstate.h +++ b/joinstate.h @@ -31,10 +31,10 @@ namespace QMatrixClient // We cannot use REGISTER_ENUM outside of a Q_OBJECT and besides, we want // to use strings that match respective JSON keys. - static constexpr std::array JoinStateStrings + static const std::array JoinStateStrings { { "join", "invite", "leave" } }; - inline constexpr const char* toCString(JoinState js) + inline const char* toCString(JoinState js) { return JoinStateStrings[size_t(js)]; } -- cgit v1.2.3