2
0
mirror of https://github.com/boostorg/compute.git synced 2026-01-30 07:42:41 +00:00

Merge pull request #694 from haahh/pr_vs_fixes

Various fixes for Visual Studio
This commit is contained in:
Kyle Lutz
2017-03-20 20:11:12 -07:00
committed by GitHub
2 changed files with 12 additions and 4 deletions

View File

@@ -173,7 +173,7 @@ BOOST_AUTO_TEST_CASE(result_of)
float(2.0f), float(3.0f), int4_(0, 1, 2, 3)
);
check_lambda_result<int4_>(isinf(_1), float4_(0, 1, 2, 3));
check_lambda_result<int4_>(bc::lambda::isinf(_1), float4_(0, 1, 2, 3));
check_lambda_result<int>(_1 + 2, int(2));
check_lambda_result<float>(_1 + 2, float(2.2f));