BobSmun
BobSmun
### Brief Issue Summary Given the repo organization for a project I'm working on, the .vscode directory is created as a symbolic link to elsewhere in the workspace This seems...
### What feature would you like to see? In order to have closer parity with the existing supported integer types, it would be helpful to have access to other common...
### Operating System Windows ### What's the issue you encountered? Modifying a byte by double-clicking on it and then entering the new value does not unlock the "Edit the hex"...
```rust import std.io; struct Test { std::print("{}", t); u32 a = t; }; le Test test1; be Test test2; std::print("{} {}",test1,test2); ``` results in: ``` I: 5 I: 5 I:...
* Some of the format_entries read / write errors using the incorrect attribute name * One of the pointer base error messages was incorrectly referring to the transform attribute
Currently, various attributes like `format_read` require a string containing a function name as the argument. A lot of the time, these functions seem to end up being a simple one-liner....
While setting up a dev environment using WSL2 and docker, to better isolate the tools required from those required by other projects, I made the following tweaks. The primary aim...
Adds binary floating point and decimal (both binary and decimal encoding) floating point types specified by IEEE 754 2019 Designed as templates, to allow various parameters to be modified (exponent...
When a variable is defined inside a namespace, the namespace scope needs to be dropped to be able to access the variable ```c++ namespace test { bool something = true;...