summaryrefslogtreecommitdiff
path: root/Rx/v2/test/operators/tap.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'Rx/v2/test/operators/tap.cpp')
-rw-r--r--Rx/v2/test/operators/tap.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/Rx/v2/test/operators/tap.cpp b/Rx/v2/test/operators/tap.cpp
index 9aad159..c9e8317 100644
--- a/Rx/v2/test/operators/tap.cpp
+++ b/Rx/v2/test/operators/tap.cpp
@@ -86,7 +86,7 @@ SCENARIO("tap stops on error", "[tap][operators]"){
auto res = w.start(
[xs, &invoked]() {
return xs
- .tap([&invoked](std::exception_ptr) {
+ .tap([&invoked](rxu::error_ptr) {
invoked++;
})
// forget type to workaround lambda deduction bug on msvc 2013