Fixed etl::expected in-place test syntax

This commit is contained in:
John Wellbelove 2025-01-24 14:32:33 +00:00
parent c3d3a326f7
commit a0668ff27f

View File

@ -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();