Muhammad Rizal Nurromdhoni

Results 4 issues of Muhammad Rizal Nurromdhoni

Problem: Parameterized test on types requires instantiating the types itself inside a `std::tuple`. This has been a major pain point for me, and looking at the issues, someone also think...

As per the [documentation](https://www.glfw.org/docs/latest/group__context.html#ga1c04dc242268f827290fe40aa1c91157), passing in `NULL` (or `nullptr`) into `glfwMakeContextCurrent` should detach the context from calling thread. This library instead emits an error into error callback with an error...

Running the app on Python 3.14, produces the following: ```py Traceback (most recent call last): File "/usr/bin/cpupower-gui", line 268, in config_sub.add_argument( ~~~~~~~~~~~~~~~~~~~~~~~^ "apply", action="store_true", help="apply cpupower configuration", ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ ) ^...

bug

Enumeration in C++1 is trivial; it should be trivial in C++2 as well. ```cpp // cpp1 enum class Foo { A, B, C, }; // cpp2 Bar: @enum type =...

bug