Don't inline this function, we do not want to consume stack space in the calling function
| 1987 | |
| 1988 | // Don't inline this function, we do not want to consume stack space in the calling function |
| 1989 | static void __attribute__((noinline)) appendAsString(std::string& str, double value) |
| 1990 | { |
| 1991 | str.append(std::to_string(value)); |
| 1992 | } |
| 1993 | |
| 1994 | // Don't inline this function, we do not want to consume stack space in the calling function |
| 1995 | static void __attribute__((noinline)) appendAsString(std::string& str, float value) |
nothing calls this directly
no outgoing calls
no test coverage detected