helper function to cast away const */
| 1892 | #endif |
| 1893 | /* helper function to cast away const */ |
| 1894 | static void* cast_away_const(const void* string) |
| 1895 | { |
| 1896 | return (void*)string; |
| 1897 | } |
| 1898 | #if defined(__clang__) || (defined(__GNUC__) && ((__GNUC__ > 4) || ((__GNUC__ == 4) && (__GNUC_MINOR__ > 5)))) |
| 1899 | #pragma GCC diagnostic pop |
| 1900 | #endif |
no outgoing calls
no test coverage detected