S
sandwich_eater
Using MSVC++ I get error C2665:
'fabs' : none of the 3 overloads can convert parameter 1 from type
'std::allocator<_Ty>::value_type'
with
[
_Ty=std::vector<double>
]
on code containing the following extract.
void func(std::vector<std::vector<double> > *a ...
double s ...
scale = scale + fabs(a[k]);
'fabs' : none of the 3 overloads can convert parameter 1 from type
'std::allocator<_Ty>::value_type'
with
[
_Ty=std::vector<double>
]
on code containing the following extract.
void func(std::vector<std::vector<double> > *a ...
double s ...
scale = scale + fabs(a[k]);