bool isSame(double a, double b)
{
return std::fabs(a - b) < std::numeric_limits<double>::epsilon();
}
template<> 37 Junior Poster
JasonHippy commented: Great post! succinct, accurate and straight to the point! +9
template<> 37 Junior Poster