From bba5813733daeb1a34a5bed01a63924a7598127c Mon Sep 17 00:00:00 2001 From: bolero-MURAKAMI Date: Mon, 22 Sep 2014 13:42:42 +0900 Subject: [PATCH] fix. --- sprout/tuple/default_construct.hpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sprout/tuple/default_construct.hpp b/sprout/tuple/default_construct.hpp index 4107a35c..6c75e80e 100644 --- a/sprout/tuple/default_construct.hpp +++ b/sprout/tuple/default_construct.hpp @@ -19,7 +19,7 @@ namespace sprout { struct default_construct_t { public: template - operator T() const { + SPROUT_CONSTEXPR operator T() const { return T(); } };