mirror of
https://github.com/KhronosGroup/Vulkan-Hpp
synced 2024-11-08 13:40:08 +00:00
ae1eb5f449
* Add move semantics for non-raii hpp handles. (#1919) * Updated generated vulkan/* files
12 lines
298 B
C++
12 lines
298 B
C++
#if ( 14 <= VULKAN_HPP_CPP_VERSION )
|
|
using std::exchange;
|
|
#else
|
|
template <class T, class U = T>
|
|
VULKAN_HPP_CONSTEXPR_14 VULKAN_HPP_INLINE T exchange( T & obj, U && newValue )
|
|
{
|
|
T oldValue = std::move( obj );
|
|
obj = std::forward<U>( newValue );
|
|
return oldValue;
|
|
}
|
|
#endif
|