| 331 | struct TSqlString : public string { |
| 332 | char buf[100]; |
| 333 | void appendf(const char *fmt,int val) { snprintf(buf,100,fmt,val); append(buf); } |
| 334 | void appendf(const char *fmt,const char *val) { snprintf(buf,100,fmt,val); append(buf); } |
| 335 | void appendf(const char *fmt,string val) { snprintf(buf,100,fmt,val.c_str()); append(buf); } |
| 336 | void appendf(const char *fmt,const char *a,string b) { snprintf(buf,100,fmt,a,b.c_str()); append(buf); } |
no outgoing calls
no test coverage detected