From 0f7fa6ecdfc4f8ff6b597202e6f26d0e9f5d5ba4 Mon Sep 17 00:00:00 2001 From: John Wellbelove Date: Mon, 4 Dec 2023 14:34:38 +0000 Subject: [PATCH] Change for VS2022 C++14 --- test/test_multi_span.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/test_multi_span.cpp b/test/test_multi_span.cpp index f4a4b066c..8658630b3 100644 --- a/test/test_multi_span.cpp +++ b/test/test_multi_span.cpp @@ -203,7 +203,7 @@ namespace ++itr; CHECK_EQUAL(struct_data2[2].i, (*itr).i); ++itr; - CHECK_EQUAL(ETL_NULLPTR, itr.operator->()); + CHECK(ETL_NULLPTR == itr.operator->()); } }; }