Mark move constructor as noexcept
This commit is contained in:
parent
7d5316bd79
commit
93527f8647
@ -113,7 +113,7 @@ public:
|
|||||||
}
|
}
|
||||||
|
|
||||||
template <typename U>
|
template <typename U>
|
||||||
rcp(rcp<U> && other) : ptr(static_cast<T *>(other.ptr))
|
rcp(rcp<U> && other) noexcept : ptr(static_cast<T *>(other.ptr))
|
||||||
{
|
{
|
||||||
static_assert(std::is_base_of<T, U>::value, "rcp: implicit cast must be an upcast");
|
static_assert(std::is_base_of<T, U>::value, "rcp: implicit cast must be an upcast");
|
||||||
other.ptr = nullptr;
|
other.ptr = nullptr;
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user