video_core/control_flow: Remove unnecessary BlockStack copy constructor

This is the default behavior of the copy constructor, so it doesn't need
to be specified.

While we're at it we can make the other non-default constructor
explicit.
This commit is contained in:
Lioncash 2019-07-16 11:52:08 -04:00
commit a162a844d2

View file

@ -29,8 +29,7 @@ struct Query {
struct BlockStack { struct BlockStack {
BlockStack() = default; BlockStack() = default;
BlockStack(const BlockStack& b) = default; explicit BlockStack(const Query& q) : ssy_stack{q.ssy_stack}, pbk_stack{q.pbk_stack} {}
BlockStack(const Query& q) : ssy_stack{q.ssy_stack}, pbk_stack{q.pbk_stack} {}
std::stack<u32> ssy_stack{}; std::stack<u32> ssy_stack{};
std::stack<u32> pbk_stack{}; std::stack<u32> pbk_stack{};
}; };