From: Mikko Rasa Date: Wed, 3 Mar 2021 18:17:13 +0000 (+0200) Subject: Make the iteration init statement a Statement instead of Node X-Git-Url: http://git.tdb.fi/?p=libs%2Fgl.git;a=commitdiff_plain;h=a628f832b651df6643654d6e4a593c8c52417e67 Make the iteration init statement a Statement instead of Node --- diff --git a/source/glsl/syntax.h b/source/glsl/syntax.h index 0821ee5f..384bd60f 100644 --- a/source/glsl/syntax.h +++ b/source/glsl/syntax.h @@ -369,7 +369,7 @@ struct Conditional: Statement struct Iteration: Statement { - NodePtr init_statement; + NodePtr init_statement; NodePtr condition; NodePtr loop_expression; Block body;