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:
parent
ff36d79afc
commit
2232778731
6 changed files with 22 additions and 228 deletions
|
@ -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_;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue