From e26c2d7489d9669a7225c47add686b55af5c5889 Mon Sep 17 00:00:00 2001 From: Josh Soref <2119212+jsoref@users.noreply.github.com> Date: Tue, 1 Nov 2022 22:01:03 -0400 Subject: [PATCH] spelling: intel Signed-off-by: Josh Soref <2119212+jsoref@users.noreply.github.com> --- test/optional_test_fail3.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/optional_test_fail3.cpp b/test/optional_test_fail3.cpp index 1ce685a..12c3ff8 100644 --- a/test/optional_test_fail3.cpp +++ b/test/optional_test_fail3.cpp @@ -15,7 +15,7 @@ // THIS TEST SHOULD FAIL TO COMPILE // #if BOOST_WORKAROUND( BOOST_INTEL_CXX_VERSION, <= 700) // Intel C++ 7.0 -// Interl C++ 7.0 incorrectly accepts the initialization "boost::optional opt = 3" +// Intel C++ 7.0 incorrectly accepts the initialization "boost::optional opt = 3" // even though the ctor is explicit (c.f. 12.3.1.2), so the test uses another form of // copy-initialization: argument-passing (8.5.12) void helper ( boost::optional ) ;