Skip to content

Commit

Permalink
COMP: Fix missing declarations of unused variables.
Browse files Browse the repository at this point in the history
This is to fix the -Wmissing-variable-declarations warning of clang.

This is simply related that the variable in question is not used in the file
  • Loading branch information
andrei-sandor committed May 24, 2024
1 parent 946c139 commit d69792e
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,6 @@
#include "itkListSample.h"

constexpr unsigned int MeasurementVectorSize = 3;
unsigned int counter = 0;

using MeasurementVectorType = itk::FixedArray<float, MeasurementVectorSize>;

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,6 @@
#include "itkListSample.h"

constexpr unsigned int MeasurementVectorSize2 = 3;
unsigned int counter2 = 0;

using MeasurementVectorType2 = itk::Array<float>;

Expand Down

0 comments on commit d69792e

Please sign in to comment.