I have been playing around with C++11 lately, and came up with the following sum function:
template <typename T>
inline T sum(const std::function<T (int)> &f, int initial, int end)
{
T retval = 0;
for(int k = initial; k <= end; k++) {
retval += f(k);
}
return retval;
}
The idea is that I can pass a lambda function and thus have a neat and readable function for mathematical sums. I then tried the following:
int main()
{
std::array<double, 2> arr1 = {{ 0.5, 1.5 }},
arr2 = {{ 1.5, -0.5 }};
auto n = sum<int>([&](int k) { return arr1[k]*arr2[k]; }, // Precision loss!
0, 1);
return 0;
}
I compiled this using g++ 4.6.3: g++ -Wall -pedantic -std=c++0x -o test main.cpp and does not give any warning about the precision loss I remarked in the comment of the source code.
It's pretty much a given here that sum<int> is a bad thing to do, but it might not be that obvious in more complex contexts. Should the compiler not notice that return value of my lambda function is double and warn me that I am losing out on precision when casting to int? Is there a specific reason it does not?
-Wallis not "all", you should use-Wall -Wextra.-pedanticis a silly a bit, I guess. – Griwes Apr 12 '12 at 13:25