Fix Kokoro build

Change-Id: I6f6f643c4f793e0af846a581f37576bca2caea9d
Reviewed-on: https://dawn-review.googlesource.com/c/tint/+/51140
Auto-Submit: James Price <jrprice@google.com>
Commit-Queue: Antonio Maiorano <amaiorano@google.com>
Kokoro: Kokoro <noreply+kokoro@google.com>
Reviewed-by: Antonio Maiorano <amaiorano@google.com>
This commit is contained in:
James Price 2021-05-14 19:46:53 +00:00 committed by Commit Bot service account
parent 54f4a21ee0
commit 72f6ba4efe
1 changed files with 1 additions and 1 deletions

View File

@ -81,7 +81,7 @@ class Variable : public Castable<Variable, Node> {
bool IsPipelineConstant() const { return is_pipeline_constant_; }
/// @returns the pipeline constant ID associated with the variable
uint32_t ConstantId() const { return constant_id_; }
uint16_t ConstantId() const { return constant_id_; }
private:
const ast::Variable* const declaration_;