aboutsummaryrefslogtreecommitdiff
path: root/src/Type.zig
diff options
context:
space:
mode:
authorAndrew Kelley <andrew@ziglang.org>2025-02-22 17:03:24 -0800
committerAndrew Kelley <andrew@ziglang.org>2025-02-22 17:09:20 -0800
commiteb3c7f570601a6e00cbf03f0a026b3493887a534 (patch)
treee621eb6aa4ab49bb72018d33c373b258f55922df /src/Type.zig
parentc0c911bfa78ea2968cd110ad64a4ba0d70ca93e5 (diff)
downloadzig-eb3c7f570601a6e00cbf03f0a026b3493887a534.tar.gz
zig-eb3c7f570601a6e00cbf03f0a026b3493887a534.zip
zig build fmt
Diffstat (limited to 'src/Type.zig')
-rw-r--r--src/Type.zig11
1 files changed, 6 insertions, 5 deletions
diff --git a/src/Type.zig b/src/Type.zig
index 883c752ef1..106aa3d2d8 100644
--- a/src/Type.zig
+++ b/src/Type.zig
@@ -610,11 +610,12 @@ pub fn hasRuntimeBitsInner(
// in which case we want control flow to continue down below.
if (tag_ty != .none and
try Type.fromInterned(tag_ty).hasRuntimeBitsInner(
- ignore_comptime_only,
- strat,
- zcu,
- tid,
- )) {
+ ignore_comptime_only,
+ strat,
+ zcu,
+ tid,
+ ))
+ {
return true;
}
},