> Comments/feedback are welcome, 

Looks good to me except for a few comments below.

With that fixed, OK pirofti@.

> +Index: src/libkst/math_kst.h
> +--- src/libkst/math_kst.h.orig
> ++++ src/libkst/math_kst.h
> +@@ -31,6 +31,13 @@ inline double pow(float a, double b) { return pow((dou
> + inline double pow(int a, qreal b) { return pow((double)a, (double)b); }
> + #endif
> + 
> ++#if defined(__OpenBSD__) && !defined(__clang__)
> ++#include <cmath>
> ++#define isnan std::isnan
> ++#define isinf std::isinf
> ++#define isfinite std::isfinite
> ++#endif

Should you not use the 'using' keyword here instead?

using std::isnan;
using std::isinf;
using std::isfinite;

Reply via email to