Skip to content

Commit

Permalink
STYLE: Allow a whitespace after variable in warning macro message
Browse files Browse the repository at this point in the history
Allow a whitespace between the variable and the remaining sentence part
in exception macro message.
  • Loading branch information
jhlegarreta authored and dzenanz committed Mar 31, 2022
1 parent 6b59435 commit 8d78d09
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -249,7 +249,7 @@ class ITK_TEMPLATE_EXPORT DiffusionTensor3DReconstructionImageFilter
{
if (idx >= m_NumberOfGradientDirections)
{
itkExceptionMacro(<< "Gradient direction " << idx << "does not exist");
itkExceptionMacro(<< "Gradient direction " << idx << " does not exist");
}
return m_GradientDirectionContainer->ElementAt(idx);
}
Expand Down

0 comments on commit 8d78d09

Please sign in to comment.