| 402 | } |
| 403 | |
| 404 | __forceinline char * allocateTempString ( const char * text, uint64_t length, const LineInfo * at ) { |
| 405 | return allocateString(text, length, at, /*temp*/true); |
| 406 | } |
| 407 | |
| 408 | __forceinline bool freeString ( char * ptr, uint64_t length, const LineInfo * at, bool tempString = false ) { |
| 409 | uint64_t size = length + 1; |
nothing calls this directly
no test coverage detected