Merge pull request #4653 from ReinUsesLisp/gc-warns

gc_adapter: Disable MSVC nonstandard extension warning on libusb.h
This commit is contained in:
bunnei 2020-09-16 22:33:58 -07:00 committed by GitHub
commit fcd0925ecf
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 9 additions and 0 deletions

View File

@ -4,7 +4,16 @@
#include <chrono>
#include <thread>
#ifdef _MSC_VER
#pragma warning(push)
#pragma warning(disable : 4200) // nonstandard extension used : zero-sized array in struct/union
#endif
#include <libusb.h>
#ifdef _MSC_VER
#pragma warning(pop)
#endif
#include "common/logging/log.h"
#include "input_common/gcadapter/gc_adapter.h"