| 1369 | |
| 1370 | |
| 1371 | void CUtlBuffer::VaPrintf( const char* pFmt, va_list list ) |
| 1372 | { |
| 1373 | char temp[2048]; |
| 1374 | int nLen = V_vsnprintf( temp, sizeof( temp ), pFmt, list ); |
| 1375 | Assert( nLen < 2048 ); |
| 1376 | (void)nLen; // Suppress warning if asserts aren't enabled |
| 1377 | PutString( temp ); |
| 1378 | } |
| 1379 | |
| 1380 | void CUtlBuffer::Printf( const char* pFmt, ... ) |
| 1381 | { |
nothing calls this directly
no test coverage detected