Commit 51e653ff authored by Dominik Charousset's avatar Dominik Charousset

fixed possible stack overflow when compiling with --enable-debug

parent f56122a5
...@@ -147,13 +147,13 @@ class testee_actor { ...@@ -147,13 +147,13 @@ class testee_actor {
do_receive ( do_receive (
on<float>() >> [&]() { on<float>() >> [&]() {
float_received = true; float_received = true;
wait4string();
}, },
on<atom("get_state")>() >> [&]() { on<atom("get_state")>() >> [&]() {
reply("wait4float"); reply("wait4float");
} }
) )
.until(gref(float_received)); .until(gref(float_received));
wait4string();
} }
public: public:
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment