Add missing override

R=bclayton@google.com, rharrison@chromium.org

Change-Id: I3daffbb7bf9b9e74e4bbadca7a62af5ceb6f2475
Reviewed-on: https://dawn-review.googlesource.com/c/tint/+/33121
Commit-Queue: dan sinclair <dsinclair@chromium.org>
Commit-Queue: Ben Clayton <bclayton@google.com>
Auto-Submit: dan sinclair <dsinclair@chromium.org>
Reviewed-by: Ben Clayton <bclayton@google.com>
This commit is contained in:
dan sinclair 2020-11-17 16:50:59 +00:00 committed by Commit Bot service account
parent 655638c4a8
commit c2af0a3fba
1 changed files with 1 additions and 1 deletions

View File

@ -34,7 +34,7 @@ template <typename BASE>
class TestHelperBase : public ast::BuilderWithContext, public BASE { class TestHelperBase : public ast::BuilderWithContext, public BASE {
public: public:
TestHelperBase() : td(ctx, &mod), b(ctx, &mod) {} TestHelperBase() : td(ctx, &mod), b(ctx, &mod) {}
~TestHelperBase() = default; ~TestHelperBase() override = default;
/// The module /// The module
ast::Module mod; ast::Module mod;