Protect against long long and long double buggy IOs with pgcc.

This commit is contained in:
Sylvain Pion 2007-03-18 13:21:33 +00:00
parent c0cda13b6a
commit cc14095b22
1 changed files with 3 additions and 1 deletions

View File

@ -63,13 +63,15 @@ int main()
// TESTIT(unsigned int, "unsigned int")
// TESTIT(unsigned long int, "unsigned long int")
// TESTIT(unsigned short int, "unsigned short int")
#ifdef CGAL_USE_LONG_LONG
#if defined CGAL_USE_LONG_LONG && !defined CGAL_CFG_LONG_LONG_IO_BUG
TESTIT(long long, "long long")
// TESTIT(unsigned long long, "unsigned long long")
#endif
TESTIT(float, "float")
TESTIT(double, "double")
#ifndef CGAL_CFG_NO_LONG_DOUBLE_IO
TESTIT(long double, "long double")
#endif
// CGAL number types
//TESTIT(CGAL::MP_Float, "MP_Float")