InternPool: fix dbHelper after 4976b58

You must now write '_ = &f' rather than just '_ = f' to ensure a
function is compiled into a binary.
This commit is contained in:
mlugg 2023-06-11 13:17:47 +01:00 committed by Andrew Kelley
parent 63604024f4
commit 5b6906c22e

View File

@ -1498,7 +1498,7 @@ pub const Index = enum(u32) {
comptime {
if (builtin.mode == .Debug) {
_ = dbHelper;
_ = &dbHelper;
}
}
};