Max Thrun
Max Thrun
My project has `-Wsign-conversion` turned on and it triggers some warnings in `argparse`: ``` /libs/argparse/include/argparse/argparse.hpp:626:26: warning: implicit conversion changes signedness: 'long' to 'std::__1::basic_string_view::size_type' (aka 'unsigned long') [-Wsign-conversion] return s.substr(it -...
It is not currently possible to set the value of `CFBundleShortVersionString` from the command line, it will always default to `0.0.0`. When releasing `.app`s it is customary to set the...
Are integer types supported? I only get the expected answer for floats or doubles. Correct answer with type 'float': ```c #include #include #define DTYPE float extern DTYPE __enzyme_autodiff(void*, DTYPE); DTYPE...
To replicate: 1. `shift+v` to visually select a line 2. `,cf` to run clang format (cursor is in correct position) 3. `u` to undo (cursor is now at top of...
Code references tetris.rom but that file is not included in the data folder ``` verilog ERROR:Xst:1918 - "../../fpgaboy/s6atlys.v" line 222: Unable to find file "data/tetris.rom". ```
### Description I had a json document with an invalid enum string. I would like an exception to be raised if the string is not a known conversion back to...
In normal situations modifier key release triggers flagsChanged with the corresponding keyCode for that modifier key. If the user does a global system shortcut such as screenshoting with cmd+ctrl+shift+4 then...
I cannot get `relative` format to display second level precision. The docs suggest that the default precision is seconds and this table suggests that with format relative i should see...
Would be great to get this feature re-enabled: https://github.com/epezent/implot/blob/85573fe04ad27f912074a2e7cde889fdf912b0c6/implot.cpp#L1417-L1425
Is it possible to autofit all subplots such that they share the same limits? Currently I use `ImPlotSubplotFlags_LinkAllX` but `SetNextAxisToFit` only operates on the plot level so all plots end...