Explicit cast to make VS quiet (?)

This commit is contained in:
Marc Glisse 2015-05-13 16:18:38 +02:00
parent 10ed4a2991
commit 3a322b76e5
1 changed files with 1 additions and 1 deletions

View File

@ -681,7 +681,7 @@ template <class R_> struct Construct_circumcenter : Store_kernel<R_> {
typedef typename LAd::Square_matrix Matrix;
typedef typename LAd::Vector Vec;
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);
Matrix m(k,k);
Vec b(k);