We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2320e0c commit ff4f311Copy full SHA for ff4f311
Release/tests/functional/pplx/pplx_test/pplxtask_tests.cpp
@@ -306,6 +306,7 @@ TEST(TestTasks_void_tasks_default_construction)
306
307
TEST(TestTasks_movable_then)
308
{
309
+#ifndef _MSC_VER
310
// create movable only type
311
struct A
312
@@ -327,6 +328,7 @@ TEST(TestTasks_movable_then)
327
328
auto f = task.then(std::move(a));
329
330
IsTrue(f.get() == 'c', L".then should be able to work with movable functors");
331
+#endif // _MSC_VER
332
}
333
334
TEST(TestTasks_constant_this)
0 commit comments