From abc5d39dbd5cfafd716ef768a065c28b64a03362 Mon Sep 17 00:00:00 2001 From: artemp Date: Tue, 14 May 2013 12:06:55 +0100 Subject: [PATCH] + comment out as msvc++ doesn't support 'noexcept' --- include/mapnik/value.hpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/mapnik/value.hpp b/include/mapnik/value.hpp index cb72592e8..98be593b1 100644 --- a/include/mapnik/value.hpp +++ b/include/mapnik/value.hpp @@ -795,7 +795,7 @@ class value friend const value operator%(value const&,value const&); public: - value () noexcept + value () //noexcept -- comment out for VC++11 : base_(value_null()) {} template value(T const& _val_)