Skip to content

Commit

Permalink
Merge pull request #208 from ngageoint/enumFix
Browse files Browse the repository at this point in the history
Fix enum for GCC 4.7.7
  • Loading branch information
asylvest authored Oct 17, 2017
2 parents 4fa39f2 + 7bc8a47 commit 9cb13cc
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion six/modules/c++/six.sicd/unittests/test_area_plane.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -155,7 +155,8 @@ TEST_CASE(testRotatePlane)
const int originalNumSamples = plane.segmentList[0]->getNumSamples();

plane.rotateCCW();
TEST_ASSERT_EQ(plane.orientation, six::OrientationType::DOWN);
TEST_ASSERT(plane.orientation ==
six::OrientationType(six::OrientationType::DOWN));
TEST_ASSERT_EQ(plane.referencePoint.rowCol.row, 8);
TEST_ASSERT_EQ(plane.referencePoint.rowCol.col, 1);

Expand Down

0 comments on commit 9cb13cc

Please sign in to comment.