Changeset b8ea001


Ignore:
Timestamp:
May 15, 2016, 11:28:02 PM (8 years ago)
Author:
Paul Brossier <piem@piem.org>
Branches:
feature/autosink, feature/cnn, feature/cnn_org, feature/constantq, feature/crepe, feature/crepe_org, feature/pitchshift, feature/pydocstrings, feature/timestretch, fix/ffmpeg5, master, pitchshift, sampler, timestretch, yinfft+
Children:
5bba662
Parents:
e27b6a1
git-author:
Paul Brossier <piem@piem.org> (05/15/16 17:25:37)
git-committer:
Paul Brossier <piem@piem.org> (05/15/16 23:28:02)
Message:

src/aubio_priv.h: use _isnan on windows msvc 9 to avoid linking error

File:
1 edited

Legend:

Unmodified
Added
Removed
  • src/aubio_priv.h

    re27b6a1 rb8ea001  
    255255#endif
    256256
     257/* avoid unresolved symbol with msvc 9 */
     258#if defined(_MSC_VER) && (_MSC_VER < 1900)
     259#define isnan _isnan
     260#endif
     261
    257262/* handy shortcuts */
    258263#define DB2LIN(g) (POW(10.0,(g)*0.05f))
Note: See TracChangeset for help on using the changeset viewer.