Skip to content

Commit

Permalink
COMP: Address missing brace initializer warning
Browse files Browse the repository at this point in the history
  • Loading branch information
blowekamp committed Jun 9, 2020
1 parent 7212dc7 commit 14a8919
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion Modules/Core/Transform/test/itkCompositeTransformTest.cxx
Expand Up @@ -131,7 +131,9 @@ itkCompositeTransformTest(int, char *[])
ITK_TEST_EXPECT_EQUAL(compositeTransform->GetFixedParameters().Size(), 0u);

{
CompositeType::InputPointType inputPoint({ 1.1, 2.2 });
CompositeType::InputPointType inputPoint;
inputPoint[0] = 1.1;
inputPoint[1] = 2.2;
CompositeType::InputVectorType inputVector;
inputVector[0] = 9.1;
inputVector[1] = 8.2;
Expand Down

0 comments on commit 14a8919

Please sign in to comment.