This library contains code that extends and simplifies different operations
for C language based programs.
Revisión | cfe26fd2d82f43fb57db940fbaf1e30c60e63389 (tree) |
---|---|
Tiempo | 2022-08-30 04:46:54 |
Autor | Sergey Gusarov <laborer2008@gmai...> |
Commiter | Sergey Gusarov |
Mingw warning fix
@@ -55,6 +55,9 @@ | ||
55 | 55 | int* a = CT_NULL; |
56 | 56 | |
57 | 57 | CT_CHECK_PTR_AND_RETURN_RES(a, 10); |
58 | + | |
59 | + // Mingw warning fix | |
60 | + return 11; | |
58 | 61 | } |
59 | 62 | |
60 | 63 | void testCompile(void) |