| 417 | } |
| 418 | |
| 419 | __forceinline void freeTempString ( char * ptr, const LineInfo * at ) { |
| 420 | if ( stringHeap->isIntern() ) return; |
| 421 | if ( stringDisposeQue ) freeString(stringDisposeQue,(uint64_t)strlen(stringDisposeQue),at, /*temp*/true); |
| 422 | stringDisposeQue = ptr; |
| 423 | } |
| 424 | |
| 425 | __forceinline void * getVariable ( int index ) const { |
| 426 | if ( uint32_t(index)<uint32_t(totalVariables) ) { |
nothing calls this directly
no test coverage detected