From 549fae1400a8fdd290fc0000436d827c4aab06c0 Mon Sep 17 00:00:00 2001 From: Aaron Gyes Date: Sun, 12 Dec 2021 13:05:48 -0800 Subject: [PATCH] ast.h: remove unused private member finished() --- src/ast.h | 3 --- 1 file changed, 3 deletions(-) diff --git a/src/ast.h b/src/ast.h index 4f05f1862..7ef51498a 100644 --- a/src/ast.h +++ b/src/ast.h @@ -926,9 +926,6 @@ class traversal_t { // Construct an empty visitor, used for iterator support. traversal_t() = default; - // \return whether we are finished visiting. - bool finished() const { return stack_.empty(); } - // Append a node. void push(const node_t *n) { assert(n && "Should not push null node");