Fix compile error on Windows

This commit is contained in:
badaix 2020-04-19 15:22:05 +02:00
parent 827cfb7985
commit bbdbe48cbc

View file

@ -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;