From cbc1e909125f31d6317153aec53ef21641606c6b Mon Sep 17 00:00:00 2001 From: Goran Jelic-Cizmek Date: Wed, 9 Oct 2024 16:58:19 +0200 Subject: [PATCH] Remove declaration of `remove_statements_from_block` method The definition was removed in 7e0b1672bac284f9908e4dfc90da4295990c4cdd --- src/visitors/visitor_utils.hpp | 5 ----- 1 file changed, 5 deletions(-) diff --git a/src/visitors/visitor_utils.hpp b/src/visitors/visitor_utils.hpp index aa89d3b84..97d8fa0d3 100644 --- a/src/visitors/visitor_utils.hpp +++ b/src/visitors/visitor_utils.hpp @@ -82,11 +82,6 @@ std::shared_ptr create_statement_block( const std::vector& code_statements); -/// Remove statements from given statement block if they exist -void remove_statements_from_block(ast::StatementBlock& block, - const std::set& statements); - - /// Return set of strings with the names of all global variables std::set get_global_vars(const ast::Program& node);