Skip to content

Commit

Permalink
Fix Clang warning -Wextra-semi-stmt
Browse files Browse the repository at this point in the history
  • Loading branch information
DanRStevens committed Nov 3, 2024
1 parent 2a64870 commit b75def9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion test/Dictionary.test.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ TEST(Dictionary, OperatorEquality) {

TEST(Dictionary, OperatorSubscript) {
{
const NAS2D::Dictionary dictionary{{{"Key1", "Value1"}}};;
const NAS2D::Dictionary dictionary{{{"Key1", "Value1"}}};
auto& value = dictionary["Key1"];

EXPECT_TRUE((std::is_same_v<const NAS2D::StringValue&, decltype(value)>));
Expand Down

0 comments on commit b75def9

Please sign in to comment.