mirror of
https://github.com/taglib/taglib.git
synced 2025-07-17 20:44:20 -04:00
ldexp is a c99-ism, which is not available in strict C++; use math.h as well to pull it in and hope for the best.
git-svn-id: svn://anonsvn.kde.org/home/kde/trunk/kdesupport/taglib@808578 283d02a7-25f6-0310-bc7c-ecb5cbfe19da
This commit is contained in:
@ -26,6 +26,10 @@
|
||||
#include <tstring.h>
|
||||
#include <tdebug.h>
|
||||
#include <cmath>
|
||||
// ldexp is a c99 function, which might not be defined in <cmath>
|
||||
// so we pull in math.h too and hope it does the right (wrong) thing
|
||||
// wrt. c99 functions in C++
|
||||
#include <math.h>
|
||||
|
||||
#include "aiffproperties.h"
|
||||
|
||||
|
Reference in New Issue
Block a user