Commit 0eb7c11a authored by Russ Powers's avatar Russ Powers

Fix missing return

parent dc61dc63
......@@ -246,7 +246,7 @@ public:
CAF_ASSERT(current_element_);
auto& stages = current_element_->stages;
if (!stages.empty())
stages.back();
return stages.back();
return nullptr;
}
......
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