From 433d562ac6b24b5e0ff63a682316be632dfc7053 Mon Sep 17 00:00:00 2001 From: Sir Anthony Date: Wed, 5 Feb 2014 21:18:09 +0600 Subject: glsl: Extend ast location structure to hande end token position. Reviewed-by: Carl Worth --- src/glsl/glsl_parser_extras.cpp | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) (limited to 'src/glsl/glsl_parser_extras.cpp') diff --git a/src/glsl/glsl_parser_extras.cpp b/src/glsl/glsl_parser_extras.cpp index d7f5202fecd..61ae62150fe 100644 --- a/src/glsl/glsl_parser_extras.cpp +++ b/src/glsl/glsl_parser_extras.cpp @@ -807,8 +807,10 @@ ast_node::print(void) const ast_node::ast_node(void) { this->location.source = 0; - this->location.line = 0; - this->location.column = 0; + this->location.first_line = 0; + this->location.first_column = 0; + this->location.last_line = 0; + this->location.last_column = 0; } -- cgit v1.2.3