mirror of https://github.com/CGAL/cgal
Explicit cast to make VS quiet (?)
This commit is contained in:
parent
10ed4a2991
commit
3a322b76e5
|
|
@ -681,7 +681,7 @@ template <class R_> struct Construct_circumcenter : Store_kernel<R_> {
|
||||||
typedef typename LAd::Square_matrix Matrix;
|
typedef typename LAd::Square_matrix Matrix;
|
||||||
typedef typename LAd::Vector Vec;
|
typedef typename LAd::Vector Vec;
|
||||||
typename Get_functor<R_, Scalar_product_tag>::type sp(this->kernel());
|
typename Get_functor<R_, Scalar_product_tag>::type sp(this->kernel());
|
||||||
int k=std::distance(f,e);
|
int k=static_cast<int>(std::distance(f,e));
|
||||||
int d=pd(p0);
|
int d=pd(p0);
|
||||||
Matrix m(k,k);
|
Matrix m(k,k);
|
||||||
Vec b(k);
|
Vec b(k);
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue