Skip to content

Commit

Permalink
COMP: MSVC Code Analysis warning, "redundant code" in ImageIORegionGTest
Browse files Browse the repository at this point in the history
Fixed a Visual C++ 2022 Code Analysis warning, saying:

> warning C6287: Redundant code.
  • Loading branch information
N-Dekker committed Jan 29, 2023
1 parent 2c43d27 commit 3d14c44
Showing 1 changed file with 0 additions and 1 deletion.
1 change: 0 additions & 1 deletion Modules/Core/Common/test/itkImageIORegionGTest.cxx
Expand Up @@ -43,7 +43,6 @@ IsDefaultConstructibleCopyableNoThrowMovableAndDestructible()
StaticAssertValueOfTypeTrait<std::is_copy_constructible<T>>() &&
StaticAssertValueOfTypeTrait<std::is_copy_assignable<T>>() &&
StaticAssertValueOfTypeTrait<std::is_nothrow_move_constructible<T>>() &&
StaticAssertValueOfTypeTrait<std::is_nothrow_move_assignable<T>>() &&
StaticAssertValueOfTypeTrait<std::is_nothrow_move_assignable<T>>();
}

Expand Down

0 comments on commit 3d14c44

Please sign in to comment.