From 458b95740c9a3e6970c63d96ad578ec79b9118bb Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?St=C3=A9phane=20Del=20Pino?= <stephane.delpino44@gmail.com> Date: Thu, 5 Apr 2018 20:56:18 +0200 Subject: [PATCH] Fixed compilation thanks to clang++ --- utils/Types.hpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/utils/Types.hpp b/utils/Types.hpp index 2be426083..90d0e8407 100644 --- a/utils/Types.hpp +++ b/utils/Types.hpp @@ -2,9 +2,9 @@ #define TYPES_HPP enum class ZeroType { zero }; -constexpr ZeroType zero=zero; +constexpr ZeroType zero=ZeroType::zero; enum class IdentityType { identity }; -constexpr IdentityType identity=identity; +constexpr IdentityType identity=IdentityType::identity; #endif // TYPES_HPP -- GitLab