| 29 | }; |
| 30 | |
| 31 | Stringf( const char *format, ... ) |
| 32 | { |
| 33 | va_list argList; |
| 34 | va_start( argList, format ); |
| 35 | |
| 36 | char buffer[MAX_STRING_LENGTH]; |
| 37 | |
| 38 | vsnprintf( buffer, MAX_STRING_LENGTH, format, argList ); |
| 39 | |
| 40 | va_end( argList ); |
| 41 | |
| 42 | _super = Super( buffer ); |
| 43 | } |
| 44 | }; |
| 45 | |
| 46 | #ifdef CXXTEST_RUNNING |
nothing calls this directly
no outgoing calls
no test coverage detected