Skip to content

Commit

Permalink
Removed the last virtual function from builder
Browse files Browse the repository at this point in the history
  • Loading branch information
AjayBrahmakshatriya committed Feb 7, 2024
1 parent c1380c2 commit 6288a8b
Showing 1 changed file with 0 additions and 9 deletions.
9 changes: 0 additions & 9 deletions include/builder/builder_base.h
Original file line number Diff line number Diff line change
Expand Up @@ -24,11 +24,6 @@ std::vector<block::expr::Ptr> extract_call_arguments(const arg_types &...args);
template <typename BT, typename... arg_types>
std::vector<block::expr::Ptr> extract_call_arguments_helper(const arg_types &...args);

class builder_root {
public:
virtual ~builder_root() = default;
};

class builder {

typedef builder BT;
Expand Down Expand Up @@ -302,10 +297,6 @@ class builder {
push_to_sequence(block_expr);
}

// This is an overload for the virtual function inside member_base
virtual block::expr::Ptr get_parent() const {
return this->block_expr;
}
};

void annotate(std::string);
Expand Down

0 comments on commit 6288a8b

Please sign in to comment.