all gen-dev tests work again

This commit is contained in:
Folkert 2023-09-13 18:55:28 +02:00
parent 5e4f43e1d8
commit fdacfce108
No known key found for this signature in database
GPG key ID: 1F17F6FFD112B97C
2 changed files with 106 additions and 26 deletions

View file

@ -3,9 +3,9 @@ const builtin = @import("builtin");
const always_inline = std.builtin.CallOptions.Modifier.always_inline;
const Monotonic = std.builtin.AtomicOrder.Monotonic;
const DEBUG_INCDEC = true;
const DEBUG_INCDEC = false;
const DEBUG_TESTING_ALLOC = false;
const DEBUG_ALLOC = true;
const DEBUG_ALLOC = false;
pub fn WithOverflow(comptime T: type) type {
return extern struct { value: T, has_overflowed: bool };