Merge pull request #791 from xantares/patch-1

Fix T & ArrayWrapper1D::operator[](int index)
This commit is contained in:
Andreas Süßenbach 2020-10-21 10:28:16 +02:00 committed by GitHub
commit 34e07e9e39
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -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);
}