aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAndrei Lebedev <lebdron@gmail.com>2018-05-11 08:23:22 +0300
committerKirk Shoop <kirk.shoop@gmail.com>2018-05-11 08:59:21 -0700
commiteaf0545efef9fdccc0a6bc88f23ef0fc876c36f3 (patch)
treecd6db89c81d03e96656e14f3bca05d5756508ea0
parentc7de35be5dc31785984f9b3c6b21f7bf46a05034 (diff)
downloadplatform_external_Reactive-Extensions_RxCpp-eaf0545efef9fdccc0a6bc88f23ef0fc876c36f3.tar.gz
platform_external_Reactive-Extensions_RxCpp-eaf0545efef9fdccc0a6bc88f23ef0fc876c36f3.tar.bz2
platform_external_Reactive-Extensions_RxCpp-eaf0545efef9fdccc0a6bc88f23ef0fc876c36f3.zip
Replace commented out noexcept with macro
-rw-r--r--Rx/v2/src/rxcpp/rx-scheduler.hpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/Rx/v2/src/rxcpp/rx-scheduler.hpp b/Rx/v2/src/rxcpp/rx-scheduler.hpp
index dbf6cb2..fc68979 100644
--- a/Rx/v2/src/rxcpp/rx-scheduler.hpp
+++ b/Rx/v2/src/rxcpp/rx-scheduler.hpp
@@ -466,7 +466,7 @@ class schedulable : public schedulable_base
: that(that)
{
}
- exit_recursed_scope_type(exit_recursed_scope_type && other) /*noexcept*/
+ exit_recursed_scope_type(exit_recursed_scope_type && other) RXCPP_NOEXCEPT
: that(other.that)
{
other.that = nullptr;