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:
Adriaan de Groot
2008-05-16 22:59:07 +00:00
parent aec136f119
commit 388d0f353d

View File

@ -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"