1
0
mirror of https://github.com/cookiengineer/audacity synced 2026-02-07 04:01:54 +01:00

Merge remote-tracking branch 'walisser/upstream'

This commit is contained in:
James Crook
2016-09-12 12:22:36 +01:00
3 changed files with 10 additions and 10 deletions

View File

@@ -46,13 +46,12 @@ out.
#include "BlockFile.h"
#include <float.h>
#include <math.h>
#include <cmath>
#include <wx/utils.h>
#include <wx/filefn.h>
#include <wx/ffile.h>
#include <wx/log.h>
#include <wx/math.h>
#include "Internat.h"
#include "MemoryX.h"
@@ -317,7 +316,7 @@ static void ComputeMinMax256(float *summary256,
max = summary256[3*i+1];
else if (!(summary256[3*i+1] <= max))
bad++;
if (wxIsNaN(summary256[3*i+2]))
if (std::isnan(summary256[3*i+2]))
bad++;
if (summary256[3*i+2] < -1 || summary256[3*i+2] > 1)
bad++;