filter_csg: Add ifdef to permit building against gmp

This commit is contained in:
Ryan Pavlik 2019-12-04 15:37:43 -06:00
parent ffda4f6758
commit 263d3bfb7b

View File

@ -2,7 +2,11 @@
#define GMPFRAC_H
#include <iostream>
#ifdef BUILD_WITH_GMP
#include <gmpxx.h>
#else
#include <mpirxx.h>
#endif
inline long floor(const mpq_class &x) {
mpz_class q;