2
0
mirror of https://github.com/boostorg/compute.git synced 2026-01-26 06:22:37 +00:00

Fix static assert message in boost::compute::function

This commit is contained in:
Kyle Lutz
2016-04-30 09:47:04 -07:00
parent 62d487c036
commit 52b78417f3

View File

@@ -215,7 +215,7 @@ public:
{
BOOST_STATIC_ASSERT_MSG(
arity == 3,
"Non-ternary function invoked with two arguments"
"Non-ternary function invoked with three arguments"
);
return detail::invoked_function<result_type, boost::tuple<Arg1, Arg2, Arg3> >(