From: Morgan Deters Date: Tue, 25 Sep 2012 20:32:18 +0000 (+0000) Subject: fix X-Git-Tag: cvc5-1.0.0~7786 X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=60c0b1855d20aeb67ac16312bb4dd00664e28f8f;p=cvc5.git fix --- diff --git a/configure.ac b/configure.ac index 30284b3f9..dc62970f1 100644 --- a/configure.ac +++ b/configure.ac @@ -721,8 +721,8 @@ AC_MSG_CHECKING([for the relationship between long and int64_t]) AC_LANG_PUSH([C++]) AC_COMPILE_IFELSE([AC_LANG_SOURCE([ #include -void foo(long); -void foo(int64_t);])], +void foo(long) {} +void foo(int64_t) {}])], [AC_MSG_RESULT([no relationship detected]); CVC4_NEED_INT64_T_OVERLOADS=1], [AC_MSG_RESULT([typedef or similar]); CVC4_NEED_INT64_T_OVERLOADS=0]) AC_LANG_POP([C++])