mirror of
https://github.com/overte-org/overte.git
synced 2025-08-07 19:30:41 +02:00
more windows build fixes
This commit is contained in:
parent
bd67531ffd
commit
cb828d330a
2 changed files with 15 additions and 8 deletions
|
@ -14,6 +14,12 @@
|
|||
|
||||
#include "PositionalAudioRingBuffer.h"
|
||||
|
||||
#ifdef _WIN32
|
||||
bool isnan_(double value) { return _isnan(value); }
|
||||
#else
|
||||
bool isnan_(double value) { return std::isnan(value); }
|
||||
#endif
|
||||
|
||||
PositionalAudioRingBuffer::PositionalAudioRingBuffer(PositionalAudioRingBuffer::Type type) :
|
||||
AudioRingBuffer(NETWORK_BUFFER_LENGTH_SAMPLES_PER_CHANNEL),
|
||||
_type(type),
|
||||
|
|
|
@ -11,6 +11,7 @@
|
|||
#include <QtCore/QTimer>
|
||||
#include <QtCore/QUuid>
|
||||
|
||||
#include <time.h>
|
||||
#include <Logging.h>
|
||||
#include <UUID.h>
|
||||
|
||||
|
|
Loading…
Reference in a new issue