We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 77cdb24 commit 2c0248cCopy full SHA for 2c0248c
thirdparty/bungee_library/upstream/bungee/Stream.h
@@ -155,7 +155,7 @@ class Stream
155
{
156
if (processGrain)
157
158
- if (!isnan(request.position))
+ if (!std::isnan(request.position))
159
160
inputBuffer.analyseGrain();
161
inputBuffer.stretcher.synthesiseGrain(outputChunk);
@@ -172,7 +172,7 @@ class Stream
172
inputBuffer.inputChunk = inputBuffer.stretcher.specifyGrain(request);
173
}
174
175
- if (outputChunk.request[0] && !isnan(outputChunk.request[0]->position))
+ if (outputChunk.request[0] && !std::isnan(outputChunk.request[0]->position))
176
177
const int need = round(framesNeeded) - frameCounter;
178
const int available = outputChunk.frameCount - outputChunkConsumed;
0 commit comments