summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--src/util/gmp_util.h7
-rw-r--r--src/util/rational_gmp_imp.h7
2 files changed, 14 insertions, 0 deletions
diff --git a/src/util/gmp_util.h b/src/util/gmp_util.h
index 2e1ccbc6a..2a15d7a7d 100644
--- a/src/util/gmp_util.h
+++ b/src/util/gmp_util.h
@@ -20,6 +20,13 @@
#ifndef __CVC4__GMP_UTIL_H
#define __CVC4__GMP_UTIL_H
+/*
+ * Older versions of GMP in combination with newer versions of GCC and C++11
+ * cause errors: https://gcc.gnu.org/gcc-4.9/porting_to.html
+ * Including <cstddef> is a workaround for this issue.
+ */
+#include <cstddef>
+
#include <gmpxx.h>
namespace CVC4 {
diff --git a/src/util/rational_gmp_imp.h b/src/util/rational_gmp_imp.h
index e0eba8ad9..e731f3c2f 100644
--- a/src/util/rational_gmp_imp.h
+++ b/src/util/rational_gmp_imp.h
@@ -20,6 +20,13 @@
#ifndef __CVC4__RATIONAL_H
#define __CVC4__RATIONAL_H
+/*
+ * Older versions of GMP in combination with newer versions of GCC and C++11
+ * cause errors: https://gcc.gnu.org/gcc-4.9/porting_to.html
+ * Including <cstddef> is a workaround for this issue.
+ */
+#include <cstddef>
+
#include <gmp.h>
#include <string>
generated by cgit on debian on lair
contact matthew@masot.net with questions or feedback