aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/MoonP/moon_compiler.cpp2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/MoonP/moon_compiler.cpp b/src/MoonP/moon_compiler.cpp
index 6173389..f18fb16 100644
--- a/src/MoonP/moon_compiler.cpp
+++ b/src/MoonP/moon_compiler.cpp
@@ -1944,6 +1944,8 @@ private:
1944 transformStatement(static_cast<Statement_t*>(node), temp); 1944 transformStatement(static_cast<Statement_t*>(node), temp);
1945 } 1945 }
1946 out.push_back(join(temp)); 1946 out.push_back(join(temp));
1947 } else {
1948 out.push_back(Empty);
1947 } 1949 }
1948 } 1950 }
1949 1951