From: Ian Romanick Date: Fri, 2 Jul 2010 00:10:11 +0000 (-0700) Subject: glsl2: Initialize ast_declarator_list::invariant in constructor X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=3832706f81d7f5310882eda6d7ef0c3e39593b18;p=mesa.git glsl2: Initialize ast_declarator_list::invariant in constructor --- diff --git a/src/glsl/glsl_parser_extras.cpp b/src/glsl/glsl_parser_extras.cpp index 1d16ef55f57..2e17c4c3372 100644 --- a/src/glsl/glsl_parser_extras.cpp +++ b/src/glsl/glsl_parser_extras.cpp @@ -484,6 +484,7 @@ ast_declarator_list::print(void) const ast_declarator_list::ast_declarator_list(ast_fully_specified_type *type) { this->type = type; + this->invariant = false; } void