helper function to cast away const */
| 1996 | #endif |
| 1997 | /* helper function to cast away const */ |
| 1998 | static void* cast_away_const(const void* string) |
| 1999 | { |
| 2000 | return (void*)string; |
| 2001 | } |
| 2002 | #if defined(__clang__) || (defined(__GNUC__) && ((__GNUC__ > 4) || ((__GNUC__ == 4) && (__GNUC_MINOR__ > 5)))) |
| 2003 | #pragma GCC diagnostic pop |
| 2004 | #endif |
no outgoing calls
no test coverage detected