intractabilis
intractabilis
I am trying to find out how Gigabyte Control Center (GCC) sets fan speeds in a Gigabyte laptop. I started from checking what device handles are opened by the GCC...
https://github.com/tzlaine/parser/blob/4cea9c03d6baf8165a21162e66be4f99ec85b529/include/boost/parser/detail/text/transcode_view.hpp#L178 Clang 18.1.4 with `-std=gnu++23` complains here that this friend function must be defined, not just declared. It seems correct according to [13.7.5 Friends](https://eel.is/c++draft/temp.friend#9).
https://github.com/tzlaine/parser/blob/4cea9c03d6baf8165a21162e66be4f99ec85b529/include/boost/parser/config.hpp#L83 `__clang__` above is not the Clang version; it's equal to 1. ``` $ clang++ --version clang version 18.1.4 (https://github.com/llvm/llvm-project.git e6c3289804a67ea0bb6a86fadbe454dd93b8d855) Target: x86_64-unknown-linux-gnu Thread model: posix $ clang++ -x c++...
Consider the following document: ```LaTeX \documentclass[english, 12pt, letterpaper]{scrartcl} \usepackage{breqn} \usepackage{unicode-math} \begin{document} \begin{dmath} T \left(h\right) \end{dmath} \end{document} ``` It results in "Missing \endgroup inserted" error. If you look at [this](https://www.latex-project.org/publications/2009-MHo-TUG-breqn-next-steps.pdf) 2009...
https://github.com/vinceliuice/Matcha-gtk-theme/blob/4f1de19860e2b7d43d770d3a984d6537848d9cd8/src/gtk/gtk-4.0/gtk-dark-pueril.css#L7967 GTK Version 4.14.5.
If you compile boost yourself, a usual way to "compile and forget about it" is to invoke ``` b2 --stagedir=PREFIX stage ``` It installs the compiled libraries and the `.cmake`...
https://github.com/boostorg/parser/blob/f468d529fe440313d9d67d092f360b1a64a6f702/doc/tutorial.qbk#L3792 Thank you for your work on Boost Parser. It's an impressive library, and I've found it quite powerful. While I appreciate the humor in the writing, I found the...
These constructors prevent aggregate initialization ```C++ auto params = BRKGA::BrkgaParams{ .population_size = 100 , .elite_percentage = 0.3 , .mutants_percentage = 0.2 }; ```
Consider the following MWE ``` $ clang++ --version clang version 17.0.2 (https://github.com/llvm/llvm-project.git b2417f51dbbd7435eb3aaf203de24de6754da50e) Target: x86_64-unknown-linux-gnu Thread model: posix InstalledDir: /home/user/clang-env/bin $ clang++ -std=gnu++23 -o tst -x c++ -I./brkga_mp_ipr - >;...
https://github.com/Gecode/gecode/blob/027c57889d66dd26ad8e1a419c2cda22ab0cf305/gecode/kernel/data/array.hpp#L1571 This line will throw an unexpected exception if `aa` is empty.