mirror of
https://github.com/KhronosGroup/Vulkan-Hpp.git
synced 2024-10-14 16:32:17 +00:00
Merge pull request #1240 from asuessenbach/void
Explicitly ignore the result of a call to std::system().
This commit is contained in:
commit
96b7bde8d4
@ -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