mirror of https://github.com/CGAL/cgal
Remove warning
This commit is contained in:
parent
8d560a5661
commit
ddefa1f60c
|
|
@ -167,24 +167,24 @@ namespace CGAL {
|
|||
// Access to beta maps
|
||||
Dart_handle get_beta(Dart_handle ADart, int B1)
|
||||
{
|
||||
CGAL_assertion(ADart!=NULL && B1>=0 && B1<=dimension);
|
||||
CGAL_assertion(ADart!=NULL && B1>=0 && B1<=(int)dimension);
|
||||
return ADart->mbeta[B1];
|
||||
}
|
||||
Dart_const_handle get_beta(Dart_const_handle ADart, int B1) const
|
||||
{
|
||||
CGAL_assertion(ADart!=NULL && B1>=0 && B1<=dimension);
|
||||
CGAL_assertion(ADart!=NULL && B1>=0 && B1<=(int)dimension);
|
||||
return ADart->mbeta[B1];
|
||||
}
|
||||
template<int B1>
|
||||
Dart_handle get_beta(Dart_handle ADart)
|
||||
{
|
||||
CGAL_assertion(ADart!=NULL && B1>=0 && B1<=dimension);
|
||||
CGAL_assertion(ADart!=NULL && B1>=0 && B1<=(int)dimension);
|
||||
return ADart->mbeta[B1];
|
||||
}
|
||||
template<int B1>
|
||||
Dart_const_handle get_beta(Dart_const_handle ADart) const
|
||||
{
|
||||
CGAL_assertion(ADart!=NULL && B1>=0 && B1<=dimension);
|
||||
CGAL_assertion(ADart!=NULL && B1>=0 && B1<=(int)dimension);
|
||||
return ADart->mbeta[B1];
|
||||
}
|
||||
|
||||
|
|
|
|||
|
|
@ -167,24 +167,24 @@ namespace CGAL {
|
|||
// Access to beta maps
|
||||
Dart_handle get_beta(Dart_handle ADart, int B1)
|
||||
{
|
||||
CGAL_assertion(ADart!=NULL && B1>=0 && B1<=dimension);
|
||||
CGAL_assertion(ADart!=NULL && B1>=0 && B1<=(int)dimension);
|
||||
return ADart->mbeta[B1];
|
||||
}
|
||||
Dart_const_handle get_beta(Dart_const_handle ADart, int B1) const
|
||||
{
|
||||
CGAL_assertion(ADart!=NULL && B1>=0 && B1<=dimension);
|
||||
CGAL_assertion(ADart!=NULL && B1>=0 && B1<=(int)dimension);
|
||||
return ADart->mbeta[B1];
|
||||
}
|
||||
template<int B1>
|
||||
Dart_handle get_beta(Dart_handle ADart)
|
||||
{
|
||||
CGAL_assertion(ADart!=NULL && B1>=0 && B1<=dimension);
|
||||
CGAL_assertion(ADart!=NULL && B1>=0 && B1<=(int)dimension);
|
||||
return ADart->mbeta[B1];
|
||||
}
|
||||
template<int B1>
|
||||
Dart_const_handle get_beta(Dart_const_handle ADart) const
|
||||
{
|
||||
CGAL_assertion(ADart!=NULL && B1>=0 && B1<=dimension);
|
||||
CGAL_assertion(ADart!=NULL && B1>=0 && B1<=(int)dimension);
|
||||
return ADart->mbeta[B1];
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Reference in New Issue