summaryrefslogtreecommitdiff
path: root/src/Bitmap_cubical_complex
diff options
context:
space:
mode:
authorpdlotko <pdlotko@636b058d-ea47-450e-bf9e-a15bfbe3eedb>2017-11-03 06:25:14 +0000
committerpdlotko <pdlotko@636b058d-ea47-450e-bf9e-a15bfbe3eedb>2017-11-03 06:25:14 +0000
commitf29705b147de69e11994b88c47b335707ccb8401 (patch)
treeebce014a484a14cd0a6d5424ac5653b758c9eda5 /src/Bitmap_cubical_complex
parent5829f877dc427d773e3eb141532b27ccec5b27b0 (diff)
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
Diffstat (limited to 'src/Bitmap_cubical_complex')
-rw-r--r--src/Bitmap_cubical_complex/include/gudhi/Bitmap_cubical_complex_base.h4
-rw-r--r--src/Bitmap_cubical_complex/include/gudhi/Bitmap_cubical_complex_periodic_boundary_conditions_base.h2
2 files changed, 3 insertions, 3 deletions
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;
}