Laurent Rineau
|
67928706cf
|
C++ conformance: calls to member templates of dependent names must be
qualified with the "template" keyword.
Example:
template <typenam T>
void f(T foobar) {
foobar.get<0>().foobar(); // error
}
must be written:
foobar.template get<0>().foobar();
|
2010-05-16 16:50:24 +00:00 |
Sylvain Pion
|
af2bb2adaf
|
Remove now useless <CGAL/utility.h> includes.
|
2008-07-25 15:06:44 +00:00 |
Sylvain Pion
|
0e682daf9a
|
Replace CGAL::Triple by boost::tuple
|
2008-07-25 14:40:53 +00:00 |
Sylvain Pion
|
370e6a1695
|
Move 3D .bbox() to the functors to make Lazy_kernel pass, and enhance the test-suite to test .bbox()
|
2006-12-27 23:25:54 +00:00 |
Sylvain Pion
|
48390a019a
|
Move Sphere_3 I/O to user class level.
|
2006-08-05 22:17:02 +00:00 |
Sylvain Pion
|
a04f166f1f
|
- Move more code to the "user classes".
|
2006-08-01 13:17:03 +00:00 |
Sylvain Pion
|
72e208d8dd
|
<CGAL/Interval_arithmetic.h> is deprecated -> <CGAL/Interval_nt.h>
|
2006-07-12 13:14:19 +00:00 |
Sylvain Pion
|
290a24c95e
|
Sphere_3::orthogonal_transform fixes:
- was only declared in Homogeneous
- was buggy in Cartesian
- was not tested
|
2006-04-03 13:16:31 +00:00 |
Sylvain Pion
|
0ec1b0efcc
|
- Merge H2 and H3 into Homogeneous_kernel.
|
2006-03-06 23:51:27 +00:00 |