Skip to content

Commit fef3c3d

Browse files
Remove a /clr workaround in test code (#4340)
1 parent 4aad4b8 commit fef3c3d

File tree

1 file changed

+0
-2
lines changed
  • tests/std/tests/Dev11_0535636_functional_overhaul

1 file changed

+0
-2
lines changed

tests/std/tests/Dev11_0535636_functional_overhaul/test.cpp

-2
Original file line numberDiff line numberDiff line change
@@ -1063,13 +1063,11 @@ constexpr bool test_invoke_constexpr() {
10631063
#endif // _HAS_CXX20
10641064
assert(&invoke(&Thing::m_x, p) == &p->m_x);
10651065

1066-
#ifndef _M_CEE // TRANSITION, DevCom-939490
10671066
assert(invoke(&Thing::sum, *p, 3) == 1023);
10681067
#if _HAS_CXX20
10691068
assert(invoke(&Thing::sum, ref(*p), 4) == 1024);
10701069
#endif // _HAS_CXX20
10711070
assert(invoke(&Thing::sum, p, 5) == 1025);
1072-
#endif // _M_CEE
10731071

10741072
assert(invoke(square_constexpr, 6) == 36);
10751073
assert(invoke(&cube_constexpr, 7) == 343);

0 commit comments

Comments
 (0)