aboutsummaryrefslogtreecommitdiff
path: root/src/check_stmt.cpp
diff options
context:
space:
mode:
authorJooperGH <alexandredmfs@gmail.com>2022-12-19 11:46:35 +0000
committerJooperGH <alexandredmfs@gmail.com>2022-12-19 11:46:35 +0000
commit4a70265bfb2a7205e80b527eb46fa4558114ad93 (patch)
treeca8c2931e2699427fef1fb48920dc732f61ad340 /src/check_stmt.cpp
parentde0d86088020df8185a9b1900273d86c7c60596d (diff)
parent0829ac30f743aa567b2da5dc490ff1b2b13ea37c (diff)
Merge branch 'master' of https://github.com/odin-lang/Odin into more_dwmapi_bindings
Diffstat (limited to 'src/check_stmt.cpp')
-rw-r--r--src/check_stmt.cpp3
1 files changed, 3 insertions, 0 deletions
diff --git a/src/check_stmt.cpp b/src/check_stmt.cpp
index 9cacb4a35..502eed57e 100644
--- a/src/check_stmt.cpp
+++ b/src/check_stmt.cpp
@@ -2018,6 +2018,9 @@ void check_stmt_internal(CheckerContext *ctx, Ast *node, u32 flags) {
ctx->in_defer = true;
check_stmt(ctx, ds->stmt, 0);
ctx->in_defer = out_in_defer;
+ if (ctx->decl) {
+ ctx->decl->defer_used += 1;
+ }
}
case_end;