mirror of https://github.com/CGAL/cgal
add missing const
This commit is contained in:
parent
3c2ce13dd9
commit
e249f59f38
|
|
@ -417,7 +417,7 @@ struct C3t3_initializer < C3T3, MD, MC, true, CGAL::Tag_false >
|
||||||
* \sa `odt_optimize_mesh_3()`
|
* \sa `odt_optimize_mesh_3()`
|
||||||
*/
|
*/
|
||||||
template<typename C3T3, typename MeshDomain, typename MeshCriteria, typename CGAL_NP_TEMPLATE_PARAMETERS>
|
template<typename C3T3, typename MeshDomain, typename MeshCriteria, typename CGAL_NP_TEMPLATE_PARAMETERS>
|
||||||
C3T3 make_mesh_3(MeshDomain& domain, MeshCriteria& criteria, const CGAL_NP_CLASS& np = parameters::default_values())
|
C3T3 make_mesh_3(const MeshDomain& domain, const MeshCriteria& criteria, const CGAL_NP_CLASS& np = parameters::default_values())
|
||||||
{
|
{
|
||||||
using parameters::choose_parameter;
|
using parameters::choose_parameter;
|
||||||
using parameters::get_parameter;
|
using parameters::get_parameter;
|
||||||
|
|
@ -443,7 +443,7 @@ template<typename C3T3, typename MeshDomain, typename MeshCriteria,
|
||||||
typename CGAL_NP_TEMPLATE_PARAMETERS_NO_DEFAULT_1,
|
typename CGAL_NP_TEMPLATE_PARAMETERS_NO_DEFAULT_1,
|
||||||
typename CGAL_NP_TEMPLATE_PARAMETERS_NO_DEFAULT_2,
|
typename CGAL_NP_TEMPLATE_PARAMETERS_NO_DEFAULT_2,
|
||||||
typename ... NP>
|
typename ... NP>
|
||||||
C3T3 make_mesh_3(MeshDomain& domain, MeshCriteria& criteria,
|
C3T3 make_mesh_3(const MeshDomain& domain, const MeshCriteria& criteria,
|
||||||
const CGAL_NP_CLASS_1& np1,
|
const CGAL_NP_CLASS_1& np1,
|
||||||
const CGAL_NP_CLASS_2& np2,
|
const CGAL_NP_CLASS_2& np2,
|
||||||
const NP& ... nps)
|
const NP& ... nps)
|
||||||
|
|
|
||||||
|
|
@ -261,7 +261,7 @@ private:
|
||||||
* \sa `CGAL::parameters::no_odt()`
|
* \sa `CGAL::parameters::no_odt()`
|
||||||
*/
|
*/
|
||||||
template<typename C3T3, typename MeshDomain, typename MeshCriteria, typename CGAL_NP_TEMPLATE_PARAMETERS>
|
template<typename C3T3, typename MeshDomain, typename MeshCriteria, typename CGAL_NP_TEMPLATE_PARAMETERS>
|
||||||
void refine_mesh_3(C3T3& c3t3, MeshDomain& domain, MeshCriteria& criteria, const CGAL_NP_CLASS& np = parameters::default_values())
|
void refine_mesh_3(C3T3& c3t3, const MeshDomain& domain, const MeshCriteria& criteria, const CGAL_NP_CLASS& np = parameters::default_values())
|
||||||
{
|
{
|
||||||
using parameters::choose_parameter;
|
using parameters::choose_parameter;
|
||||||
using parameters::get_parameter;
|
using parameters::get_parameter;
|
||||||
|
|
@ -291,7 +291,7 @@ template<typename C3T3, typename MeshDomain, typename MeshCriteria,
|
||||||
typename CGAL_NP_TEMPLATE_PARAMETERS_NO_DEFAULT_1,
|
typename CGAL_NP_TEMPLATE_PARAMETERS_NO_DEFAULT_1,
|
||||||
typename CGAL_NP_TEMPLATE_PARAMETERS_NO_DEFAULT_2,
|
typename CGAL_NP_TEMPLATE_PARAMETERS_NO_DEFAULT_2,
|
||||||
typename ... NP>
|
typename ... NP>
|
||||||
void refine_mesh_3(C3T3& c3t3, MeshDomain& domain, MeshCriteria& criteria,
|
void refine_mesh_3(C3T3& c3t3, const MeshDomain& domain, const MeshCriteria& criteria,
|
||||||
const CGAL_NP_CLASS_1& np1,
|
const CGAL_NP_CLASS_1& np1,
|
||||||
const CGAL_NP_CLASS_2& np2,
|
const CGAL_NP_CLASS_2& np2,
|
||||||
const NP& ... nps)
|
const NP& ... nps)
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue