tint/ast: Add missing 'const' on pointer member

Change-Id: I8572e3b3f1b26ba79b1306e23f3447cc739108a4
Reviewed-on: https://dawn-review.googlesource.com/c/dawn/+/104660
Auto-Submit: Ben Clayton <bclayton@google.com>
Commit-Queue: Dan Sinclair <dsinclair@chromium.org>
Kokoro: Kokoro <noreply+kokoro@google.com>
Reviewed-by: Dan Sinclair <dsinclair@chromium.org>
This commit is contained in:
Ben Clayton 2022-10-11 16:31:52 +00:00 committed by Dawn LUCI CQ
parent cc90cfd84f
commit 3c34d83088
1 changed files with 1 additions and 1 deletions

View File

@ -55,7 +55,7 @@ class IfStatement final : public Castable<IfStatement, Statement> {
const BlockStatement* const body;
/// The optional else statement, or nullptr
const Statement* else_statement;
const Statement* const else_statement;
};
} // namespace tint::ast