Matthew Lugg

Results 46 issues of Matthew Lugg

I'm using a custom pPrintOpt config which looks like this: ``` pPrint :: (Show a) => a -> IO () pPrint = pPrintOpt CheckColorTty (defaultOutputOptionsDarkBg {outputOptionsCompact=True,outputOptionsPageWidth=60}) ``` I'm getting some...

high priority

Hi, Mekanism gases (Deuterium, Tritium, Lithium etc.) are not working properly in my system. I have two 4k gas storage cells, and they're working fine, but the gases randomly become...

Hi, I'm trying to use the SDL 2 bindings to play basic audio, and am encountering some odd errors. I have a small test program which is quite similar to...

needs triage

Note: I think I'm okay to make this proposal based on what Vexu said in https://github.com/ziglang/zig/issues/13244#issuecomment-1287103168, since this is a small `std` change which doesn't impact compiler implementation and removes...

### Zig Version 0.11.0-dev.3+0bbb00035 ### Steps to Reproduce and Observed Behavior ```zig const Foo = packed struct(u32) { x: u1, }; fn bar(_: Foo) callconv(.C) void {} pub fn main()...

bug
contributor friendly
stage2
error message

**EDIT: I believe my original proposal here was infeasible, so have adjusted it to a smaller (and fairly simple) change.** [Updated Proposal](https://github.com/ziglang/zig/issues/14187#issuecomment-1462320967) --- Tangentially related: #9260 ## Problem Currently, generic...

proposal

The core goal here was to resolve #7056. I achieved that, but I think this also makes AstGen kinda easier to understand and less error-prone, which is a nice plus....

See the added test case for an example of what this fixes. Previously, if you had a pointer to multiple array elements and tried to write to it at comptime,...

Windows treats console output outside the ASCII range as being part of its "codepage", which is very much *not* UTF-8 by default. This can be annoying when writing programs on...