helper function to cast away const */
| 2005 | #endif |
| 2006 | /* helper function to cast away const */ |
| 2007 | static void* cast_away_const(const void* string) |
| 2008 | { |
| 2009 | return (void*)string; |
| 2010 | } |
| 2011 | #if defined(__clang__) || (defined(__GNUC__) && ((__GNUC__ > 4) || ((__GNUC__ == 4) && (__GNUC_MINOR__ > 5)))) |
| 2012 | #pragma GCC diagnostic pop |
| 2013 | #endif |
no outgoing calls
no test coverage detected