From 802e73477a99c9775ec45d54d68c6dece750b19c Mon Sep 17 00:00:00 2001 From: Josh Soref <2119212+jsoref@users.noreply.github.com> Date: Tue, 1 Nov 2022 21:46:28 -0400 Subject: [PATCH] spelling: flagged Signed-off-by: Josh Soref <2119212+jsoref@users.noreply.github.com> --- test/optional_test.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/test/optional_test.cpp b/test/optional_test.cpp index f5ca436..5a61a20 100644 --- a/test/optional_test.cpp +++ b/test/optional_test.cpp @@ -451,7 +451,7 @@ void test_throwing_val_assign_on_initialized( T const* ) // This should: // Attempt to assign 'a' and throw. // opt is kept initialized but its value not neccesarily fully assigned - // (in this test, incompletely assigned is flaged with the value -1 being set) + // (in this test, incompletely assigned is flagged with the value -1 being set) set_pending_assign( ARG(T) ) ; opt.reset ( a ) ; passed = true ; @@ -576,7 +576,7 @@ void test_throwing_assign_to_initialized( T const* ) // This should: // Attempt to copy construct 'opt1.value()' into opt0 and throw. // opt0 is kept initialized but its value not neccesarily fully assigned - // (in this test, incompletely assigned is flaged with the value -1 being set) + // (in this test, incompletely assigned is flagged with the value -1 being set) set_pending_assign( ARG(T) ) ; opt0 = opt1 ; passed = true ;