fix defaulted default constructor

This commit is contained in:
bolero-MURAKAMI 2014-01-14 00:18:06 +09:00
parent 5aacc92a14
commit 7640eca894
82 changed files with 139 additions and 120 deletions

View file

@ -50,7 +50,7 @@ namespace sprout {
protected:
using base_type::container;
public:
back_insert_iterator() = default;
SPROUT_CONSTEXPR back_insert_iterator() SPROUT_DEFAULTED_DEFAULT_CONSTRUCTOR_DECL
explicit SPROUT_CONSTEXPR back_insert_iterator(param_type x)
: base_type(x)
{}