Skip to content

Commit

Permalink
Fixed etl::expected in-place test syntax
Browse files Browse the repository at this point in the history
  • Loading branch information
jwellbelove committed Jan 24, 2025
1 parent c3d3a32 commit a0668ff
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion test/test_expected.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -184,7 +184,7 @@ namespace

using ExpectedInPlace = etl::expected<ValueInPlace, Error>;

ExpectedInPlace expected(etl::in_place, 1, 2);
ExpectedInPlace expected(etl::in_place_t(), 1, 2);

ValueInPlace output = expected.value();

Expand Down

0 comments on commit a0668ff

Please sign in to comment.