diff options
Diffstat (limited to 'src/sksl/ast/SkSLASTBoolLiteral.h')
-rw-r--r-- | src/sksl/ast/SkSLASTBoolLiteral.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/sksl/ast/SkSLASTBoolLiteral.h b/src/sksl/ast/SkSLASTBoolLiteral.h index 6782d36e7e..48e916eed5 100644 --- a/src/sksl/ast/SkSLASTBoolLiteral.h +++ b/src/sksl/ast/SkSLASTBoolLiteral.h @@ -16,8 +16,8 @@ namespace SkSL { * Represents "true" or "false". */ struct ASTBoolLiteral : public ASTExpression { - ASTBoolLiteral(int offset, bool value) - : INHERITED(offset, kBool_Kind) + ASTBoolLiteral(Position position, bool value) + : INHERITED(position, kBool_Kind) , fValue(value) {} String description() const override { |