diff --git a/src/V3Ast.h b/src/V3Ast.h index 89ae5a35b..c3243b30d 100644 --- a/src/V3Ast.h +++ b/src/V3Ast.h @@ -2026,7 +2026,7 @@ public: // Same as above, but for 'const' nodes template - void exists(std::function p) const { + bool exists(std::function p) const { static_assert(checkTypeParameter(), "Invalid type parameter 'T_Node'"); return predicateImpl(this, p); }