seems that the no_parameter function is no longer needed

This commit is contained in:
Sébastien Loriot 2022-11-21 16:02:04 +01:00
parent 98e8a004eb
commit fd00ce2d02
2 changed files with 2 additions and 10 deletions

View File

@ -176,8 +176,8 @@ void test_bool_op_no_copy(
params::edge_is_constrained_map(ecm2),
std::make_tuple(params::edge_is_constrained_map(ecm_out_union),
params::edge_is_constrained_map(ecm_out_inter),
params::no_parameters(params::edge_is_constrained_map(ecm_out_union)),
params::no_parameters(params::edge_is_constrained_map(ecm_out_union))));
params::default_values(),
params::default_values()));
// dump_constrained_edges(*(*output[0]), ecm_out_union, "out_cst_union.cgal");
// dump_constrained_edges(*(*output[1]), ecm_out_inter, "out_cst_inter.cgal");

View File

@ -426,14 +426,6 @@ inline all_default()
}
#endif
template <typename T, typename Tag, typename Base>
Named_function_parameters<T,Tag,Base>
inline no_parameters(Named_function_parameters<T,Tag,Base>)
{
typedef Named_function_parameters<T,Tag,Base> Params;
return Params();
}
template <class Tag, bool ref_only = false>
struct Boost_parameter_compatibility_wrapper
{