- Jul 02, 2024
-
-
Ludovic Apvrille authored
-
- Jun 26, 2024
-
-
Ludovic Apvrille authored
-
- Jun 25, 2024
-
-
Ludovic Apvrille authored
-
- Jun 05, 2024
-
-
Ludovic Apvrille authored
-
- May 31, 2024
-
-
Ludovic Apvrille authored
-
- May 22, 2024
- Apr 29, 2024
-
-
jawher-j authored
-
- Apr 05, 2024
-
-
jerray authored
-
- Mar 29, 2024
-
-
Ludovic Apvrille authored
This reverts merge request !485
-
- Mar 26, 2024
-
-
jerray authored
-
- Mar 15, 2024
- Mar 14, 2024
-
-
jerray authored
-
- Feb 27, 2024
- Feb 14, 2024
- Feb 09, 2024
-
-
Ludovic Apvrille authored
-
-
-
-
jerray authored
-
jerray authored
-
- Jan 23, 2024
-
-
Ludovic Apvrille authored
-
Ludovic Apvrille authored
-
- Dec 20, 2023
-
-
Ludovic Apvrille authored
-
- Nov 29, 2023
-
-
Bastien Sultan authored
-
Ludovic Apvrille authored
-
Bastien Sultan authored
-
Ludovic Apvrille authored
-
Bastien Sultan authored
-
Bastien Sultan authored
-
- Nov 25, 2023
-
-
Marvin Häuser authored
C++ 98 requires all source files to terminate with a new-line character. It also does not allow for semicolons outside of declarations that require it (and in function scopes). Fix them to allow for pedantic warnings to be enabled when beneficial. Finally, it does not allow for object-to-function casts. The first two warnings are resolved trivially. For the third, the solution to cast through a pointer address is technically unsafe, as systems are not required to support object pointers (e.g. void *) being able to represent function pointers. However, the existence of dlsym() virtually implies this is supported on the target system (technically, all symbols could be data symbols, but that is nitpicking).
-