Mentions légales du service

Skip to content
Snippets Groups Projects
Commit 6d6d44bd authored by Olivier Commowick's avatar Olivier Commowick
Browse files

Correct compilation errors on recent ITK

parent 6140cc17
No related branches found
No related tags found
No related merge requests found
......@@ -58,6 +58,8 @@ namespace itk
Tensor< double,3 > NumericTraits<Tensor<double, 3> >::ZeroValue() { return Zero; }
Tensor< long double,3 > NumericTraits<Tensor<long double, 3> >::ZeroValue() { return Zero; }
Tensor< double,3 > NumericTraits<Tensor<double, 3> >::min() { return vcl_numeric_limits<double>::min(); }
Tensor< double,3 > NumericTraits<Tensor<double, 3> >::max() { return vcl_numeric_limits<double>::max(); }
......
......@@ -411,6 +411,7 @@ public:
typedef Tensor<long double, 3> RealType;
typedef long double ScalarRealType;
static const Tensor< long double,3 > ITK_EXPORT Zero;
static Tensor< long double,3 > ZeroValue();
const static bool is_integer=false;
};
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment