summaryrefslogtreecommitdiff
path: root/Rx/v2/src/rxcpp/operators/rx-group_by.hpp
diff options
context:
space:
mode:
authorValery Kopylov <v-valkop@microsoft.com>2015-06-01 18:01:53 +0300
committerValery Kopylov <v-valkop@microsoft.com>2015-06-01 18:10:10 +0300
commitb6efd0e20e6567cea539c1c7a06a5be65e6f56b3 (patch)
treeb2be918c91484fdff47b24f37aa3eb6e010178ff /Rx/v2/src/rxcpp/operators/rx-group_by.hpp
parente3019f70c1114ba3c773fbefac0ef94869323eb6 (diff)
downloadRxCpp-b6efd0e20e6567cea539c1c7a06a5be65e6f56b3.tar.gz
group_by should return an observable of items emitted by MarbleSelector.
Diffstat (limited to 'Rx/v2/src/rxcpp/operators/rx-group_by.hpp')
-rw-r--r--Rx/v2/src/rxcpp/operators/rx-group_by.hpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/Rx/v2/src/rxcpp/operators/rx-group_by.hpp b/Rx/v2/src/rxcpp/operators/rx-group_by.hpp
index 8afb4b9..203f3c9 100644
--- a/Rx/v2/src/rxcpp/operators/rx-group_by.hpp
+++ b/Rx/v2/src/rxcpp/operators/rx-group_by.hpp
@@ -50,7 +50,7 @@ struct group_by_traits
typedef std::map<key_type, typename subject_type::subscriber_type, predicate_type> key_subscriber_map_type;
- typedef grouped_observable<key_type, source_value_type> grouped_observable_type;
+ typedef grouped_observable<key_type, marble_type> grouped_observable_type;
};
template<class T, class Observable, class KeySelector, class MarbleSelector, class BinaryPredicate>