mirror of
https://github.com/KhronosGroup/Vulkan-Hpp.git
synced 2024-10-14 16:32:17 +00:00
Merge pull request #791 from xantares/patch-1
Fix T & ArrayWrapper1D::operator[](int index)
This commit is contained in:
commit
34e07e9e39
@ -10250,7 +10250,7 @@ int main( int argc, char ** argv )
|
||||
return std::array<T, N>::operator[](index);
|
||||
}
|
||||
|
||||
VULKAN_HPP_CONSTEXPR T & operator[](int index) VULKAN_HPP_NOEXCEPT
|
||||
T & operator[](int index) VULKAN_HPP_NOEXCEPT
|
||||
{
|
||||
return std::array<T, N>::operator[](index);
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user