summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorvrouvrea <vrouvrea@636b058d-ea47-450e-bf9e-a15bfbe3eedb>2016-04-07 15:52:20 +0000
committervrouvrea <vrouvrea@636b058d-ea47-450e-bf9e-a15bfbe3eedb>2016-04-07 15:52:20 +0000
commite61484887ab37b1295114eca0c8996e98a72e41e (patch)
tree1c06be77639686208190fa164a37edd763111681 /src
parentdffe72221d325a446151012121a6ba069319596e (diff)
Fix Doxygen warning
git-svn-id: svn+ssh://scm.gforge.inria.fr/svnroot/gudhi/branches/alphashapes@1104 636b058d-ea47-450e-bf9e-a15bfbe3eedb Former-commit-id: c5873a4a207f01e20729d3ce964ae67f6cf55331
Diffstat (limited to 'src')
-rw-r--r--src/Simplex_tree/include/gudhi/Simplex_tree.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/Simplex_tree/include/gudhi/Simplex_tree.h b/src/Simplex_tree/include/gudhi/Simplex_tree.h
index afc7d613..f60e5c72 100644
--- a/src/Simplex_tree/include/gudhi/Simplex_tree.h
+++ b/src/Simplex_tree/include/gudhi/Simplex_tree.h
@@ -1191,8 +1191,8 @@ class Simplex_tree {
* function is not launching `initialize_filtration()` but returns the filtration modification information. If the
* complex has changed , please call `initialize_filtration()` to recompute it.
*/
- bool prune_above_filtration(Filtration_value filt) {
- return rec_prune_above_filtration(root(), filt);
+ bool prune_above_filtration(Filtration_value filtration) {
+ return rec_prune_above_filtration(root(), filtration);
}
private: