mirror of https://github.com/CGAL/cgal
Protect against long long and long double buggy IOs with pgcc.
This commit is contained in:
parent
c0cda13b6a
commit
cc14095b22
|
|
@ -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")
|
||||
|
|
|
|||
Loading…
Reference in New Issue