mirror of
https://github.com/badaix/snapcast.git
synced 2025-07-20 01:47:36 +02:00
Fix windows build
This commit is contained in:
parent
d9c394e0fa
commit
b626217e79
1 changed files with 6 additions and 6 deletions
|
@ -19,12 +19,6 @@
|
|||
#define CATCH_CONFIG_MAIN
|
||||
|
||||
// prototype/interface header file
|
||||
#pragma GCC diagnostic push
|
||||
#if !defined(__clang__)
|
||||
#pragma GCC diagnostic ignored "-Wmaybe-uninitialized"
|
||||
#endif
|
||||
#include "catch_amalgamated.hpp"
|
||||
#pragma GCC diagnostic pop
|
||||
|
||||
// local headers
|
||||
#include "common/aixlog.hpp"
|
||||
|
@ -35,6 +29,12 @@
|
|||
#include "server/streamreader/stream_uri.hpp"
|
||||
|
||||
// 3rd party headers
|
||||
#pragma GCC diagnostic push
|
||||
#if defined(__GNUC__) && !defined(__clang__)
|
||||
#pragma GCC diagnostic ignored "-Wmaybe-uninitialized"
|
||||
#endif
|
||||
#include "catch_amalgamated.hpp"
|
||||
#pragma GCC diagnostic pop
|
||||
|
||||
// standard headers
|
||||
#include <regex>
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue