1
0
Fork 0
mirror of https://github.com/bolero-MURAKAMI/Sprout synced 2025-08-03 12:49:50 +00:00

remove slipped file

This commit is contained in:
bolero-MURAKAMI 2013-10-31 12:37:38 +09:00
parent ff36d79afc
commit 2232778731
6 changed files with 22 additions and 228 deletions

View file

@ -152,9 +152,12 @@ namespace sprout {
SPROUT_CONSTEXPR reference_wrapper(T& t) SPROUT_NOEXCEPT
: t_(&t)
{}
reference_wrapper(reference_wrapper<T> const&) SPROUT_NOEXCEPT = default;
reference_wrapper(reference_wrapper const&) = default;
// assignment
reference_wrapper& operator=(reference_wrapper<T> const&) SPROUT_NOEXCEPT = default;
SPROUT_CXX14_CONSTEXPR reference_wrapper& operator=(reference_wrapper const& rhs) {
t_ = rhs.t_;
return *this;
}
// access
SPROUT_CONSTEXPR operator T& () const SPROUT_NOEXCEPT {
return *t_;