| 622 | |
| 623 | |
| 624 | AString StripColorCodes(const AString & a_Message) |
| 625 | { |
| 626 | AString res(a_Message); |
| 627 | size_t idx = 0; |
| 628 | for (;;) |
| 629 | { |
| 630 | idx = res.find("\xc2\xa7", idx); |
| 631 | if (idx == AString::npos) |
| 632 | { |
| 633 | return res; |
| 634 | } |
| 635 | res.erase(idx, 3); |
| 636 | } |
| 637 | } |
| 638 | |
| 639 | |
| 640 |
no outgoing calls
no test coverage detected