Bug 1245076 - Include cmath instead of math.h in Collider.cpp. r=jfkthame

The combination of math.h being included and unified sources made abs()
in UtfCodec.h mean something different, failing the build with
libstdc++6 headers.
This commit is contained in:
Mike Hommey 2016-03-10 21:05:18 +09:00
Родитель 59e4bf3989
Коммит 188ea9bab3
1 изменённых файлов: 1 добавлений и 1 удалений

Просмотреть файл

@ -26,7 +26,7 @@ of the License or (at your option) any later version.
*/
#include <algorithm>
#include <limits>
#include <math.h>
#include <cmath>
#include <string>
#include <functional>
#include "inc/Collider.h"