Ignore warnings in some tests; fix ambiguity in ArrayWrapper test (#1712)
This commit is contained in:
committed by
GitHub
parent
9c15a1e1ef
commit
de5821703f
@@ -27,6 +27,19 @@ static std::string EngineName = "Vulkan.hpp";
|
||||
template <typename T>
|
||||
class MyAllocator : public std::allocator<T>
|
||||
{
|
||||
public:
|
||||
MyAllocator() = default;
|
||||
|
||||
template <class U>
|
||||
MyAllocator( const MyAllocator<U> & /*unused*/ )
|
||||
{
|
||||
}
|
||||
|
||||
template <class U>
|
||||
struct rebind
|
||||
{
|
||||
using other = MyAllocator<U>;
|
||||
};
|
||||
};
|
||||
|
||||
vk::UniqueDescriptorSetLayout createDescriptorSetLayoutUnique( vk::Device const & device,
|
||||
|
||||
Reference in New Issue
Block a user