mirror of
https://github.com/badaix/snapcast.git
synced 2025-05-13 09:06:43 +02:00
Fix compile error on Windows
This commit is contained in:
parent
827cfb7985
commit
bbdbe48cbc
1 changed files with 9 additions and 3 deletions
|
@ -16,11 +16,12 @@
|
|||
along with this program. If not, see <http://www.gnu.org/licenses/>.
|
||||
***/
|
||||
|
||||
#ifndef NOMINMAX
|
||||
#define NOMINMAX
|
||||
#endif // NOMINMAX
|
||||
|
||||
#include "controller.hpp"
|
||||
#include "decoder/pcm_decoder.hpp"
|
||||
#include <iostream>
|
||||
#include <memory>
|
||||
#include <string>
|
||||
#if defined(HAS_OGG) && (defined(HAS_TREMOR) || defined(HAS_VORBIS))
|
||||
#include "decoder/ogg_decoder.hpp"
|
||||
#endif
|
||||
|
@ -36,6 +37,11 @@
|
|||
#include "message/time.hpp"
|
||||
#include "time_provider.hpp"
|
||||
|
||||
#include <algorithm>
|
||||
#include <iostream>
|
||||
#include <memory>
|
||||
#include <string>
|
||||
|
||||
using namespace std;
|
||||
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue