Update following renaming EK -> Exact_kernel and FK -> Approximate_kernel.

This commit is contained in:
Sylvain Pion 2007-09-07 09:53:56 +00:00
parent 1c189779b6
commit ab2310307d
1 changed files with 2 additions and 2 deletions

View File

@ -32,10 +32,10 @@ class Skin_surface_filtered_traits_3
: public Skin_surface_traits_base_3<K>
{
// Exact traits is based on the exact kernel.
typedef Skin_surface_traits_3<typename K::EK>
typedef Skin_surface_traits_3<typename K::Exact_kernel>
Exact_traits;
// Filtering traits is based on the filtering kernel.
typedef Skin_surface_traits_3<typename K::FK>
typedef Skin_surface_traits_3<typename K::Approximate_kernel>
Filtering_traits;
typedef typename K::C2E C2E;