]> granicus.if.org Git - postgresql/commitdiff
More portability fixing for bipartite_match.c.
authorTom Lane <tgl@sss.pgh.pa.us>
Sat, 16 May 2015 15:35:42 +0000 (11:35 -0400)
committerTom Lane <tgl@sss.pgh.pa.us>
Sat, 16 May 2015 15:35:42 +0000 (11:35 -0400)
<float.h> is required for isinf() on some platforms.  Per buildfarm.

src/backend/lib/bipartite_match.c

index 9c08b2895d10d4182cfe0cee6aec308f47798931..1adba78ff34a9f1be67fcee9ae34b099e5f372e1 100644 (file)
@@ -16,6 +16,7 @@
  */
 #include "postgres.h"
 
+#include <float.h>
 #include <math.h>
 #include <limits.h>