diff options
author | Kevin Ryde <user42@zip.com.au> | 2003-07-24 00:55:45 +0200 |
---|---|---|
committer | Kevin Ryde <user42@zip.com.au> | 2003-07-24 00:55:45 +0200 |
commit | 107aa9fbd9d511cf6e3a36510d1679ee16646eb7 (patch) | |
tree | 91377def048e55877d4b542e0e5ab22ecdc9a185 /tests | |
parent | b533e0b4976a124f12dfaf4193c27dcf8ac81a78 (diff) | |
download | gmp-107aa9fbd9d511cf6e3a36510d1679ee16646eb7.tar.gz |
* tests/cxx/t-assign.cc, tests/cxx/t-binary.cc, tests/cxx/t-ops.cc,
tests/cxx/t-prec.cc, tests/cxx/t-ternary.cc, tests/cxx/t-unary.cc:
Include config.h for WANT_MPFR.
Diffstat (limited to 'tests')
-rw-r--r-- | tests/cxx/t-assign.cc | 4 | ||||
-rw-r--r-- | tests/cxx/t-binary.cc | 4 | ||||
-rw-r--r-- | tests/cxx/t-ops.cc | 2 | ||||
-rw-r--r-- | tests/cxx/t-prec.cc | 4 | ||||
-rw-r--r-- | tests/cxx/t-ternary.cc | 2 | ||||
-rw-r--r-- | tests/cxx/t-unary.cc | 4 |
6 files changed, 16 insertions, 4 deletions
diff --git a/tests/cxx/t-assign.cc b/tests/cxx/t-assign.cc index d6d543248..f80b3248f 100644 --- a/tests/cxx/t-assign.cc +++ b/tests/cxx/t-assign.cc @@ -1,6 +1,6 @@ /* Test mp*_class assignment operators. -Copyright 2001, 2002 Free Software Foundation, Inc. +Copyright 2001, 2002, 2003 Free Software Foundation, Inc. This file is part of the GNU MP Library. @@ -19,6 +19,8 @@ along with the GNU MP Library; see the file COPYING.LIB. If not, write to the Free Software Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. */ +#include "config.h" + #include <iostream> #include <string> diff --git a/tests/cxx/t-binary.cc b/tests/cxx/t-binary.cc index 1270e5f39..d7094e86c 100644 --- a/tests/cxx/t-binary.cc +++ b/tests/cxx/t-binary.cc @@ -1,6 +1,6 @@ /* Test mp*_class binary expressions. -Copyright 2001, 2002 Free Software Foundation, Inc. +Copyright 2001, 2002, 2003 Free Software Foundation, Inc. This file is part of the GNU MP Library. @@ -19,6 +19,8 @@ along with the GNU MP Library; see the file COPYING.LIB. If not, write to the Free Software Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. */ +#include "config.h" + #include <iostream> #include "gmp.h" diff --git a/tests/cxx/t-ops.cc b/tests/cxx/t-ops.cc index 6f8b64284..91ca2e969 100644 --- a/tests/cxx/t-ops.cc +++ b/tests/cxx/t-ops.cc @@ -19,6 +19,8 @@ along with the GNU MP Library; see the file COPYING.LIB. If not, write to the Free Software Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. */ +#include "config.h" + #include <iostream> #include "gmp.h" diff --git a/tests/cxx/t-prec.cc b/tests/cxx/t-prec.cc index 4f2ddc276..dc0f7d3a4 100644 --- a/tests/cxx/t-prec.cc +++ b/tests/cxx/t-prec.cc @@ -1,6 +1,6 @@ /* Test precision of mpf_class expressions. -Copyright 2001, 2002 Free Software Foundation, Inc. +Copyright 2001, 2002, 2003 Free Software Foundation, Inc. This file is part of the GNU MP Library. @@ -19,6 +19,8 @@ along with the GNU MP Library; see the file COPYING.LIB. If not, write to the Free Software Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. */ +#include "config.h" + #include <iostream> #include "gmp.h" diff --git a/tests/cxx/t-ternary.cc b/tests/cxx/t-ternary.cc index a505f52da..12902d899 100644 --- a/tests/cxx/t-ternary.cc +++ b/tests/cxx/t-ternary.cc @@ -19,6 +19,8 @@ along with the GNU MP Library; see the file COPYING.LIB. If not, write to the Free Software Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. */ +#include "config.h" + #include <iostream> #include "gmp.h" diff --git a/tests/cxx/t-unary.cc b/tests/cxx/t-unary.cc index a19638497..1158d0121 100644 --- a/tests/cxx/t-unary.cc +++ b/tests/cxx/t-unary.cc @@ -1,6 +1,6 @@ /* Test mp*_class unary expressions. -Copyright 2001, 2002 Free Software Foundation, Inc. +Copyright 2001, 2002, 2003 Free Software Foundation, Inc. This file is part of the GNU MP Library. @@ -19,6 +19,8 @@ along with the GNU MP Library; see the file COPYING.LIB. If not, write to the Free Software Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. */ +#include "config.h" + #include <iostream> #include "gmp.h" |