+ make default ctor nothrow

This commit is contained in:
artemp 2013-05-09 13:46:09 +01:00
parent 656c9e724f
commit 6bfb92811e

View file

@ -786,7 +786,7 @@ class value
friend const value operator%(value const&,value const&);
public:
value ()
value () noexcept
: base_(value_null()) {}
template <typename T> value(T const& _val_)