mirror of
https://github.com/KhronosGroup/Vulkan-Hpp.git
synced 2024-10-14 16:32:17 +00:00
Explicitly mark a call to std::system() as void.
This commit is contained in:
parent
e02d19207b
commit
8a921fc90c
@ -16545,7 +16545,7 @@ extern "C" __declspec( dllimport ) FARPROC __stdcall GetProcAddress( HINSTANCE h
|
||||
#if defined( CLANG_FORMAT_EXECUTABLE )
|
||||
std::cout << "VulkanHppGenerator: Formatting using ";
|
||||
std::string commandString = "\"" CLANG_FORMAT_EXECUTABLE "\" --version ";
|
||||
std::system( commandString.c_str() );
|
||||
(void)std::system( commandString.c_str() );
|
||||
#endif
|
||||
|
||||
std::cout << "VulkanHppGenerator: Parsing " << filename << std::endl;
|
||||
|
Loading…
Reference in New Issue
Block a user