| 469 | struct ConstStringRef |
| 470 | { |
| 471 | ConstStringRef() : Begin(NULL), End(NULL) {} |
| 472 | /*explicit */ConstStringRef(const char * str) : Begin(str), End(str+strlen(str)) {} |
| 473 | explicit ConstStringRef(const char * b, const char * e) : Begin(b), End(e) {} |
| 474 |
nothing calls this directly
no outgoing calls
no test coverage detected