Fix placement of [[deprecated]] in old stop predicate aliases

This commit is contained in:
Mael Rouxel-Labbé 2022-11-08 14:53:03 +01:00
parent 7a0fbcffd2
commit f744b2fbec
2 changed files with 2 additions and 2 deletions

View File

@ -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

View File

@ -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