Commit 5b6906c22e

mlugg <mlugg@mlugg.co.uk>
2023-06-11 14:17:47
InternPool: fix dbHelper after 4976b58
You must now write '_ = &f' rather than just '_ = f' to ensure a function is compiled into a binary.
1 parent 6360402
Changed files (1)
src/InternPool.zig
@@ -1498,7 +1498,7 @@ pub const Index = enum(u32) {
 
     comptime {
         if (builtin.mode == .Debug) {
-            _ = dbHelper;
+            _ = &dbHelper;
         }
     }
 };