mirror of https://github.com/CGAL/cgal
Do not perform the test for g++ <= 4.2
This commit is contained in:
parent
8cee2ef1dd
commit
1b10cd8d28
|
|
@ -1,3 +1,15 @@
|
|||
|
||||
#include <boost/config.hpp>
|
||||
#if (BOOST_GCC < 40300)
|
||||
|
||||
#include <iostream>
|
||||
int main()
|
||||
{
|
||||
std::cerr << "NOTICE: This test requires G++ > 4.2, and will not be compiled." << std::endl;
|
||||
}
|
||||
|
||||
#else
|
||||
|
||||
//#define BOOST_RESULT_OF_USE_DECLTYPE 1
|
||||
#include <CGAL/Epick_d.h>
|
||||
#include <typeinfo>
|
||||
|
|
@ -600,3 +612,5 @@ int main(){
|
|||
test3<Ker3>();
|
||||
test3<Kerd>();
|
||||
}
|
||||
|
||||
#endif
|
||||
|
|
|
|||
Loading…
Reference in New Issue