From 465ccc260f69c2be4d73cf0432580265db7dbeb5 Mon Sep 17 00:00:00 2001 From: Minglei Zhang Date: Sun, 1 Jan 2017 10:31:37 +0800 Subject: Fix a issue with rxcpp::util::any_value_true --- Rx/v2/src/rxcpp/rx-util.hpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'Rx/v2/src/rxcpp/rx-util.hpp') diff --git a/Rx/v2/src/rxcpp/rx-util.hpp b/Rx/v2/src/rxcpp/rx-util.hpp index 0e09301..77e0d3f 100644 --- a/Rx/v2/src/rxcpp/rx-util.hpp +++ b/Rx/v2/src/rxcpp/rx-util.hpp @@ -129,7 +129,7 @@ struct any_value_true { template bool operator()(Value0 v0, ValueN... vn) const { - return v0 || all_values_true()(vn...); + return v0 || any_value_true()(vn...); } }; -- cgit v1.2.3