Skip to content

Commit

Permalink
Remove unused default value.
Browse files Browse the repository at this point in the history
  • Loading branch information
Ralf W. Grosse-Kunstleve committed Jan 12, 2024
1 parent 3f14ae3 commit 64dcab7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/test_stl.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -203,7 +203,7 @@ TEST_SUBMODULE(stl, m) {

struct NoDefaultCtor {
explicit constexpr NoDefaultCtor(int val) : val{val} {}
int val = -88;
int val;
};

struct NoDefaultCtorArray {
Expand Down

0 comments on commit 64dcab7

Please sign in to comment.