Skip to content

Commit fbcc060

Browse files
author
devsh
committed
by default our core::Uncopyable deleted default move ctors as well, now make sure they're still available
1 parent 48a3652 commit fbcc060

File tree

2 files changed

+3
-1
lines changed

2 files changed

+3
-1
lines changed

include/nbl/core/decl/BaseClasses.h

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,8 @@ class NBL_FORCE_EBO NBL_NO_VTABLE Uncopyable
1919
{
2020
public:
2121
Uncopyable() = default;
22+
Uncopyable(Uncopyable&&) = default;
23+
Uncopyable& operator=(Uncopyable&&) = default;
2224
_NBL_NO_COPY_FINAL(Uncopyable);
2325
};
2426

0 commit comments

Comments
 (0)