| 621 | } |
| 622 | |
| 623 | string get_suffix ( const string & req ) { |
| 624 | auto np = req.find_last_of("\\/"); |
| 625 | if ( np != string::npos ) { |
| 626 | return req.substr(np+1); |
| 627 | } else { |
| 628 | return req; |
| 629 | } |
| 630 | } |
| 631 | |
| 632 | string g_dasRoot; |
| 633 |
no outgoing calls
no test coverage detected