Fix missing <utility> import for std::exchange

In GCC 12, std::exchange is no longer implicitly included in many header files, and so must be explicitly included by including `utility`.
This commit is contained in:
Teodor Spæren 2022-05-15 12:15:07 +02:00 committed by GitHub
parent d50186a64b
commit 466fab3dfc
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -16421,6 +16421,7 @@ int main( int argc, char ** argv )
#include <string>
#include <system_error>
#include <tuple>
#include <utility>
#include <type_traits>
#include <vulkan/vulkan.h>
#if 17 <= VULKAN_HPP_CPP_VERSION