helper function to cast away const */
| 2018 | #endif |
| 2019 | /* helper function to cast away const */ |
| 2020 | static void* cast_away_const(const void* string) |
| 2021 | { |
| 2022 | return (void*)string; |
| 2023 | } |
| 2024 | #if defined(__clang__) || (defined(__GNUC__) && ((__GNUC__ > 4) || ((__GNUC__ == 4) && (__GNUC_MINOR__ > 5)))) |
| 2025 | #pragma GCC diagnostic pop |
| 2026 | #endif |
no outgoing calls
no test coverage detected