diff options
author | Marius Kintel <marius@kintel.net> | 2014-01-24 00:54:52 (GMT) |
---|---|---|
committer | Marius Kintel <marius@kintel.net> | 2014-01-24 00:54:52 (GMT) |
commit | b4fc711758d92e65819e534276ad77a7c4e5d69c (patch) | |
tree | 1db22cfdc67a9f8bd9102aee32084fe871ca8b2b | |
parent | 34a758c7f68057f66898a4c49d43c6069ff3d1a5 (diff) |
compile fix: forgot include for boost::math::isinf
-rw-r--r-- | src/primitives.cc | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/primitives.cc b/src/primitives.cc index 97c1fef..c9e1072 100644 --- a/src/primitives.cc +++ b/src/primitives.cc @@ -40,6 +40,8 @@ #include <assert.h> #include <boost/assign/std/vector.hpp> using namespace boost::assign; // bring 'operator+=()' into scope + +#include <boost/math/special_functions/fpclassify.hpp> using boost::math::isinf; #define F_MINIMUM 0.01 |