mirror of
https://github.com/KhronosGroup/Vulkan-Hpp
synced 2024-11-10 06:30:08 +00:00
Fix ambiguous constructor of ObjectDestroy with vk::NoParent. (#451)
Resolves #450
This commit is contained in:
parent
afe4e6b03f
commit
3f82338d9f
@ -4629,7 +4629,7 @@ int main( int argc, char **argv )
|
|||||||
, m_dispatch( nullptr )
|
, m_dispatch( nullptr )
|
||||||
{}
|
{}
|
||||||
|
|
||||||
ObjectDestroy( Optional<const AllocationCallbacks> allocationCallbacks = nullptr, Dispatch const &dispatch = VULKAN_HPP_DEFAULT_DISPATCHER ) VULKAN_HPP_NOEXCEPT
|
ObjectDestroy( Optional<const AllocationCallbacks> allocationCallbacks, Dispatch const &dispatch = VULKAN_HPP_DEFAULT_DISPATCHER ) VULKAN_HPP_NOEXCEPT
|
||||||
: m_allocationCallbacks( allocationCallbacks )
|
: m_allocationCallbacks( allocationCallbacks )
|
||||||
, m_dispatch( &dispatch )
|
, m_dispatch( &dispatch )
|
||||||
{}
|
{}
|
||||||
|
@ -2691,7 +2691,7 @@ namespace VULKAN_HPP_NAMESPACE
|
|||||||
, m_dispatch( nullptr )
|
, m_dispatch( nullptr )
|
||||||
{}
|
{}
|
||||||
|
|
||||||
ObjectDestroy( Optional<const AllocationCallbacks> allocationCallbacks = nullptr, Dispatch const &dispatch = VULKAN_HPP_DEFAULT_DISPATCHER ) VULKAN_HPP_NOEXCEPT
|
ObjectDestroy( Optional<const AllocationCallbacks> allocationCallbacks, Dispatch const &dispatch = VULKAN_HPP_DEFAULT_DISPATCHER ) VULKAN_HPP_NOEXCEPT
|
||||||
: m_allocationCallbacks( allocationCallbacks )
|
: m_allocationCallbacks( allocationCallbacks )
|
||||||
, m_dispatch( &dispatch )
|
, m_dispatch( &dispatch )
|
||||||
{}
|
{}
|
||||||
|
Loading…
Reference in New Issue
Block a user