diff --git a/Tangential_complex/test/Tangential_complex/test_tangential_complex.cpp b/Tangential_complex/test/Tangential_complex/test_tangential_complex.cpp index 51f77c0814b..a44ed2fe252 100644 --- a/Tangential_complex/test/Tangential_complex/test_tangential_complex.cpp +++ b/Tangential_complex/test/Tangential_complex/test_tangential_complex.cpp @@ -13,8 +13,6 @@ #include #include -#include - #ifdef CGAL_LINKED_WITH_TBB # include #endif @@ -40,7 +38,7 @@ std::vector generate_points_on_sphere(double radius) template std::vector generate_points_on_klein_bottle(double a, double b) { - typedef CGAL::Kernel_traits::type Kernel; + typedef typename CGAL::Kernel_traits::type Kernel; typedef typename Kernel::FT FT; CGAL::Random rng; @@ -88,7 +86,7 @@ int main() tc.compute_tangential_complex(); std::stringstream output_filename; - output_filename << "data/test_tc_" << INTRINSIC_DIMENSION << + output_filename << "data/test_tc_" << INTRINSIC_DIMENSION << "_in_R" << AMBIENT_DIMENSION << ".off"; std::ofstream off_stream(output_filename.str()); tc.export_to_off(off_stream);