diff --git a/include/boost/coroutine2/detail/push_coroutine.hpp b/include/boost/coroutine2/detail/push_coroutine.hpp index 45ae170..e68c880 100644 --- a/include/boost/coroutine2/detail/push_coroutine.hpp +++ b/include/boost/coroutine2/detail/push_coroutine.hpp @@ -54,7 +54,7 @@ public: push_coroutine & operator=( push_coroutine && other) noexcept { if ( this == & other) return * this; - std::swap(cb_, other.cb_); + std::swap( cb_, other.cb_); return * this; } @@ -133,7 +133,7 @@ public: push_coroutine & operator=( push_coroutine && other) noexcept { if ( this == & other) return * this; - std::swap(cb_, other.cb_); + std::swap( cb_, other.cb_); return * this; } @@ -210,7 +210,7 @@ public: push_coroutine & operator=( push_coroutine && other) noexcept { if ( this == & other) return * this; - std::swap(cb_, other.cb_); + std::swap( cb_, other.cb_); return * this; }