mirror of
https://github.com/Ardour/ardour.git
synced 2025-12-23 15:16:25 +01:00
Fix for isnan using MinGW compiler
This commit is contained in:
parent
dadc9f63e7
commit
87a440553f
1 changed files with 1 additions and 1 deletions
|
|
@ -812,7 +812,7 @@ ControlList::modify (iterator iter, double when, double val)
|
||||||
(*iter)->when = when;
|
(*iter)->when = when;
|
||||||
(*iter)->value = val;
|
(*iter)->value = val;
|
||||||
|
|
||||||
if (::isnan (val)) {
|
if (isnan (val)) {
|
||||||
abort ();
|
abort ();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue