Minor C++ fixes

This commit is contained in:
Lynix
2020-03-17 17:13:27 +01:00
parent 5fde1e335b
commit 9cc206b33e
10 changed files with 72 additions and 77 deletions

View File

@@ -15,7 +15,7 @@ namespace Nz
{
}
inline Pipeline::Pipeline(Pipeline&& object) :
inline Pipeline::Pipeline(Pipeline&& object) noexcept :
m_device(std::move(object.m_device)),
m_allocator(object.m_allocator),
m_handle(object.m_handle),