From f29705b147de69e11994b88c47b335707ccb8401 Mon Sep 17 00:00:00 2001 From: pdlotko Date: Fri, 3 Nov 2017 06:25:14 +0000 Subject: Vincent's comments fixed. git-svn-id: svn+ssh://scm.gforge.inria.fr/svnroot/gudhi/branches/periodic_cubical_complex_fix@2825 636b058d-ea47-450e-bf9e-a15bfbe3eedb Former-commit-id: d5478a89511fc9636559dde3d140ef26f69091db --- .../include/gudhi/Bitmap_cubical_complex_base.h | 4 ++-- .../gudhi/Bitmap_cubical_complex_periodic_boundary_conditions_base.h | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) (limited to 'src/Bitmap_cubical_complex/include') diff --git a/src/Bitmap_cubical_complex/include/gudhi/Bitmap_cubical_complex_base.h b/src/Bitmap_cubical_complex/include/gudhi/Bitmap_cubical_complex_base.h index e8eee3d2..3aa64fbf 100644 --- a/src/Bitmap_cubical_complex/include/gudhi/Bitmap_cubical_complex_base.h +++ b/src/Bitmap_cubical_complex/include/gudhi/Bitmap_cubical_complex_base.h @@ -1,4 +1,4 @@ -/* This file is part of the Gudhi Library. The Gudhi library +/* This file is part of the Gudhi Library. The Gudhi library * (Geometric Understanding in Higher Dimensions) is a generic C++ * library for computational topology. * @@ -158,7 +158,7 @@ class Bitmap_cubical_complex_base { if ( number_of_position_in_which_counters_do_not_agree != -1 ) { std::cout << "Cells given to compute_incidence_between_cells procedure do not form a pair of coboundary-boundary.\n"; - throw logic_error("Cells given to compute_incidence_between_cells procedure do not form a pair of coboundary-boundary."); + throw std::logic_error("Cells given to compute_incidence_between_cells procedure do not form a pair of coboundary-boundary."); } number_of_position_in_which_counters_do_not_agree = i; } diff --git a/src/Bitmap_cubical_complex/include/gudhi/Bitmap_cubical_complex_periodic_boundary_conditions_base.h b/src/Bitmap_cubical_complex/include/gudhi/Bitmap_cubical_complex_periodic_boundary_conditions_base.h index 4f015893..d27c0212 100644 --- a/src/Bitmap_cubical_complex/include/gudhi/Bitmap_cubical_complex_periodic_boundary_conditions_base.h +++ b/src/Bitmap_cubical_complex/include/gudhi/Bitmap_cubical_complex_periodic_boundary_conditions_base.h @@ -141,7 +141,7 @@ class Bitmap_cubical_complex_periodic_boundary_conditions_base : public Bitmap_c if ( number_of_position_in_which_counters_do_not_agree != -1 ) { std::cout << "Cells given to compute_incidence_between_cells procedure do not form a pair of coboundary-boundary.\n"; - throw logic_error("Cells given to compute_incidence_between_cells procedure do not form a pair of coboundary-boundary."); + throw std::logic_error("Cells given to compute_incidence_between_cells procedure do not form a pair of coboundary-boundary."); } number_of_position_in_which_counters_do_not_agree = i; } -- cgit v1.2.3