Skip to content

Commit 97b58a3

Browse files
committed
COMP: Use maybe_unused to suppress warnings.
1 parent 34308ca commit 97b58a3

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

include/itkPointFeature.hxx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -288,8 +288,8 @@ void
288288
PointFeature<TInputPointSet, TOutputPointSet>::GenerateData()
289289
{
290290
auto input = this->GetInput();
291-
auto output = this->GetOutput();
292-
auto inPts = input->GetPoints();
291+
[[maybe_unused]] auto output = this->GetOutput(); // Exercise function
292+
[[maybe_unused]] auto inPts = input->GetPoints(); // Exercise function
293293

294294
itkDebugMacro(<< "Executing connectivity");
295295

0 commit comments

Comments
 (0)