The output from "qcdloop-config --cppflags" does NOT contain "-std=c++11", even though this flag is badly needed. Please fix it.
On this occasion, I would also like to ask you to improve the "qcdloop/maths.h" file a bit. Instead of:
inline double Abs(complex const& x) { return std::fabs(x);}
please use:
inline double Abs(complex const& x) { return std::abs(x);}
The output from "
qcdloop-config --cppflags" does NOT contain "-std=c++11", even though this flag is badly needed. Please fix it.On this occasion, I would also like to ask you to improve the "qcdloop/maths.h" file a bit. Instead of:
inline double Abs(complex const& x) { return std::fabs(x);}please use:
inline double Abs(complex const& x) { return std::abs(x);}