From fb689bbb19bb7baf3336ee4759ecd33ab038a50a Mon Sep 17 00:00:00 2001 From: Wilson Snyder Date: Sat, 12 Dec 2020 22:16:10 -0500 Subject: [PATCH] Fix clang warning, recent change --- src/V3Ast.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/V3Ast.h b/src/V3Ast.h index cd703068f..f459f6069 100644 --- a/src/V3Ast.h +++ b/src/V3Ast.h @@ -2486,7 +2486,7 @@ public: ASTNODE_BASE_FUNCS(NodeUOrStructDType) virtual const char* broken() const override; virtual void dump(std::ostream& str) const override; - virtual bool isCompound() const { return false; } // Because don't support unpacked + virtual bool isCompound() const override { return false; } // Because don't support unpacked // For basicp() we reuse the size to indicate a "fake" basic type of same size virtual AstBasicDType* basicp() const override { return (isFourstate()