paxcut
paxcut
you are not placing any variables in data. How is anything being printed in console other than this? ``` I: Pattern exited with code: 0 I: Evaluation took 0.0014823s ```...
It seems to work fine but you are defining the template argument differently in function. using auto inside template creates non type template parameter, but original the template was defined...
It doesn't silently break. The pattern will read data until it reaches the end of the file and then stop. your data is ```cpp 0,1,2, ... ,30,31,0,1,2, ... ,30,31 ```...
in this case ```cpp struct A { u8 a[32]; u8 b[33] [[format("format_array")]]; }; fn format_array(auto array) { std::print("{}", array[0]); return ""; }; ``` the problem is that your format function...
If there is an error in imhex that your code is showing then the error has nothing to do with templates and formats. to see that then the error should...
you need to change the title of the issue to reflect the true nature of the error you are seeing or close it and open a new one
It is definitely does not silently allow it to run. 1) there is no empty argument. there is a variable that is not assigned a value so it remains as...
if that was true then making the file size 3 and leaving last value of zero should have no effect on the output but thats not true. the value for...
I found this quote searching for information on the subject > You can depend on the ordering of bit-fields to be deterministic as long as your program is intentionally not...
most definitely. The code is still using pre-refactored code so it can't be used as is, but I made sure (or at least tried ) to duplicate some of the...