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/?a=commitdiff_plain;h=a628f832b651df6643654d6e4a593c8c52417e67;hp=2b74d276f67d07e37b56aeebc474a58ceeea3e68;p=libs%2Fgl.git 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;