summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorROUVREAU Vincent <vincent.rouvreau@inria.fr>2020-10-26 10:58:19 +0100
committerROUVREAU Vincent <vincent.rouvreau@inria.fr>2020-10-26 10:58:19 +0100
commit699a89819da922222cedcd81b4a1553ee161a633 (patch)
tree75d58cf1bdadbd36d34dc9893a8fa0655900031d
parentafafd56fdb4a53b66ca3354fc20f787f12340fa4 (diff)
code review: bad copy/paste that needs rephrase
-rw-r--r--src/Alpha_complex/include/gudhi/Alpha_complex.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/Alpha_complex/include/gudhi/Alpha_complex.h b/src/Alpha_complex/include/gudhi/Alpha_complex.h
index 4f7a7bd2..b315fa99 100644
--- a/src/Alpha_complex/include/gudhi/Alpha_complex.h
+++ b/src/Alpha_complex/include/gudhi/Alpha_complex.h
@@ -198,7 +198,7 @@ class Alpha_complex {
*/
template <typename InputPointRange, typename WeightRange>
Alpha_complex(const InputPointRange& points, WeightRange weights) {
- static_assert(Weighted, "This constructor is not available for non-weighted versions of Alpha_complex_3d");
+ static_assert(Weighted, "This constructor is not available for non-weighted versions of Alpha_complex");
// FIXME: this test is only valid if we have a forward range
GUDHI_CHECK(boost::size(weights) == boost::size(points),
std::invalid_argument("Points number in range different from weights range number"));