Commit eb7a1123 authored by Allard van Mossel's avatar Allard van Mossel Committed by Guolin Ke
Browse files

Fixed compilation error on OSX with GNU 6.2.0 (#59)

`error: 'exp' is not a member of 'std'
     rec[i] = std::exp(rec[i] - wmax);`
parent 3e285d7d
...@@ -9,6 +9,7 @@ ...@@ -9,6 +9,7 @@
#include <sstream> #include <sstream>
#include <cstdint> #include <cstdint>
#include <algorithm> #include <algorithm>
#include <cmath>
namespace LightGBM { namespace LightGBM {
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment