mirror of
https://github.com/badaix/snapcast.git
synced 2025-07-21 10:27:39 +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
|
#define CATCH_CONFIG_MAIN
|
||||||
|
|
||||||
// prototype/interface header file
|
// 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
|
// local headers
|
||||||
#include "common/aixlog.hpp"
|
#include "common/aixlog.hpp"
|
||||||
|
@ -35,6 +29,12 @@
|
||||||
#include "server/streamreader/stream_uri.hpp"
|
#include "server/streamreader/stream_uri.hpp"
|
||||||
|
|
||||||
// 3rd party headers
|
// 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
|
// standard headers
|
||||||
#include <regex>
|
#include <regex>
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue