Skip to content
Snippets Groups Projects
Commit 6a32d625 authored by Julien Malik's avatar Julien Malik
Browse files

ENH: avoid surprise with the macro

parent ea6898d1
No related branches found
No related tags found
No related merge requests found
......@@ -80,7 +80,10 @@ VectorDataToDSValidatedVectorDataFilter<TVectorData, TPrecision>
{
//Initialize Dempster Shafer tools
if( m_DescriptorModels.size() == 0 )
itkExceptionMacro(<< "No defined Descriptor. Please add a descriptor model.");
{
itkExceptionMacro(<< "No defined Descriptor. Please add a descriptor model.");
}
for (unsigned int i=0; i<m_DescriptorModels.size(); i++)
{
typename FuzzyVarType::Pointer fuz = FuzzyVarType::New();
......
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