Fix compiler warnings on Ubuntu (#156)

The compiler was complaining about a missing include due to the
addition of NaN/inf checks in 482a5f8b. Adding the include
silences the warnings.
This commit is contained in:
Jonathan S. Katz
2023-06-09 21:27:36 -04:00
committed by GitHub
parent 7446cbde8f
commit b8c7a4f4b6

View File

@@ -1,6 +1,7 @@
#include "postgres.h"
#include <float.h>
#include <math.h>
#include "ivfflat.h"
#include "miscadmin.h"