Skip to content
Snippets Groups Projects
Commit 3da6cc81 authored by Manuel Grizonnet's avatar Manuel Grizonnet
Browse files

COMP: missing ';' in previous commit

parent d8bdb979
No related branches found
No related tags found
No related merge requests found
......@@ -61,7 +61,7 @@ template<typename T> bool IsNoData(const T & pixel, const
assert(flags.size()>0);
assert(values.size()>0);
return ((nanIsNoData && vnl_math_isnan(pixel)) || (flags[0] && (pixel == values[0])))
return ((nanIsNoData && vnl_math_isnan(pixel)) || (flags[0] && (pixel == values[0])));
}
/**
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment