summaryrefslogtreecommitdiff
path: root/Rx/v2/src/rxcpp/rx-observer.hpp
diff options
context:
space:
mode:
authorKirk Shoop <kirk.shoop@microsoft.com>2014-03-13 19:41:28 -0700
committerKirk Shoop <kirk.shoop@microsoft.com>2014-03-13 19:41:28 -0700
commit64de52450d8a449257d06d2d33540acefa5a8728 (patch)
tree42a7fd23d50f5ba13ca86d90e5e2c44fd8eb4ccf /Rx/v2/src/rxcpp/rx-observer.hpp
parent52d6a9cd64ec5256d7320f0dab106e1c944a8df7 (diff)
downloadRxCpp-64de52450d8a449257d06d2d33540acefa5a8728.tar.gz
add override support to make_subscriber
make_subscriber can take an existing subscriber and the some overrides and produce a new subscriber that reuses what has not been overridden.
Diffstat (limited to 'Rx/v2/src/rxcpp/rx-observer.hpp')
-rw-r--r--Rx/v2/src/rxcpp/rx-observer.hpp3
1 files changed, 3 insertions, 0 deletions
diff --git a/Rx/v2/src/rxcpp/rx-observer.hpp b/Rx/v2/src/rxcpp/rx-observer.hpp
index 369339d..c5cb7a2 100644
--- a/Rx/v2/src/rxcpp/rx-observer.hpp
+++ b/Rx/v2/src/rxcpp/rx-observer.hpp
@@ -489,6 +489,9 @@ public:
~observer()
{
}
+ observer()
+ {
+ }
observer(inner_t inner)
: inner(std::move(inner))
{