add constexpr algorithm C++14 version: move, move_backward, swap_ranges, iter_swap

This commit is contained in:
bolero-MURAKAMI 2013-10-15 14:01:34 +09:00
parent d5c84b07c9
commit a3427d375f
23 changed files with 430 additions and 47 deletions

View file

@ -63,6 +63,9 @@ namespace sprout {
container->push_front(sprout::move(value));
return *this;
}
SPROUT_CONSTEXPR front_insert_iterator& operator*() const {
return *this;
}
SPROUT_CXX14_CONSTEXPR front_insert_iterator& operator*() {
return *this;
}