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

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