Max Thrun

Results 19 comments of Max Thrun

> I could think of a different macro to achieve this behavior though. Some potential naming options for a new enum courtesy of chatGPT ``` NLOHMANN_JSON_SERIALIZE_ENUM_STRICT NLOHMANN_JSON_SERIALIZE_ENUM_CHECKED NLOHMANN_JSON_SERIALIZE_ENUM_SAFE NLOHMANN_JSON_SERIALIZE_ENUM_ENSURE NLOHMANN_JSON_SERIALIZE_ENUM_VALIDATE...

@pabloariasal why was https://github.com/nlohmann/json/pull/3996 closed? I just ran into this issue again and am looking forward to getting your PR merged.

That is already possible via the `ImPlot::PlotLineG` function, check out the example in this comment: https://github.com/epezent/implot/blob/d87512353495e7760e7fda7566a05beef7627d8f/implot.h#L838-L848

Thanks. I'll try to procrastinate on this feature request from my users and hope you get to it first :)

> we can use `std::pair` as the input to the third pipe It makes sense but doesn't exactly solve what I'm looking for. I want to turn the 3rd pipe...

This paper, talking about TBB, actually mentions my situation: https://citeseerx.ist.psu.edu/document?repid=rep1&type=pdf&doi=d5a650bf4690ad6718c31aebe87cf7ceb458c7c1 ``` Single input, multiple outputs The SplitBlocks stage takes a block and splits it into smaller segments; it takes a...

The example code provided here seems to still work: http://gibsonsec.org/snapchat/fulldisclosure/

Bisection led to this as the first bad commit: https://github.com/numpy/numpy/commit/7eb4050719b1d86132dfc374ce91a015d32b3145 (https://github.com/numpy/numpy/pull/27091) Reverting that commit seems to fix it.

This works so seems like some auto-detection is missing in one of the `cmake/compilers/*.cmake` files ```shell % cmake -GNinja -DCMAKE_TOOLCHAIN_FILE=../../../cross-windows.cmake -DTBB_TEST=OFF -DCMAKE_C_FLAGS="-mwaitpkg" -DCMAKE_CXX_FLAGS="-mwaitpkg" .. ```