mirror of https://github.com/CGAL/cgal
Fix placement of [[deprecated]] in old stop predicate aliases
This commit is contained in:
parent
7a0fbcffd2
commit
f744b2fbec
|
|
@ -26,7 +26,7 @@ namespace Surface_mesh_simplification {
|
|||
|
||||
// Stops when the ratio of initial to current number of edges is below some value.
|
||||
template<class TM_>
|
||||
using Count_ratio_stop_predicate = CGAL_DEPRECATED Edge_count_ratio_stop_predicate<TM_>;
|
||||
using Count_ratio_stop_predicate CGAL_DEPRECATED = Edge_count_ratio_stop_predicate<TM_>;
|
||||
|
||||
} // namespace Surface_mesh_simplification
|
||||
} // namespace CGAL
|
||||
|
|
|
|||
|
|
@ -26,7 +26,7 @@ namespace Surface_mesh_simplification {
|
|||
|
||||
// Stops when the number of edges left falls below a given number.
|
||||
template<class TM_>
|
||||
using Count_stop_predicate = CGAL_DEPRECATED Edge_count_stop_predicate<TM_>;
|
||||
using Count_stop_predicate CGAL_DEPRECATED = Edge_count_stop_predicate<TM_>;
|
||||
|
||||
} // namespace Surface_mesh_simplification
|
||||
} // namespace CGAL
|
||||
|
|
|
|||
Loading…
Reference in New Issue