+ comment out as msvc++ doesn't support 'noexcept'

This commit is contained in:
artemp 2013-05-14 12:06:55 +01:00
parent 245e71d735
commit abc5d39dbd

View file

@ -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 <typename T> value(T const& _val_)