From a628f832b651df6643654d6e4a593c8c52417e67 Mon Sep 17 00:00:00 2001 From: Mikko Rasa Date: Wed, 3 Mar 2021 20:17:13 +0200 Subject: [PATCH] Make the iteration init statement a Statement instead of Node --- source/glsl/syntax.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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; -- 2.43.0