mirror of
https://github.com/microsoft/GSL.git
synced 2025-11-20 17:29:22 +01:00
Another round of clang-formatting.
This commit is contained in:
@@ -579,7 +579,11 @@ public:
|
||||
#ifndef GSL_MSVC_NO_DEFAULT_MOVE_CTOR
|
||||
constexpr span& operator=(span&& other) noexcept = default;
|
||||
#else
|
||||
constexpr span& operator=(span&& other) noexcept { storage_ = std::move(other.storage_); return *this; }
|
||||
constexpr span& operator=(span&& other) noexcept
|
||||
{
|
||||
storage_ = std::move(other.storage_);
|
||||
return *this;
|
||||
}
|
||||
#endif
|
||||
// [span.sub], span subviews
|
||||
template <std::ptrdiff_t Count>
|
||||
|
||||
Reference in New Issue
Block a user