| 644 | |
| 645 | |
| 646 | bool |
| 647 | Reader::decodeString( Token &token ) |
| 648 | { |
| 649 | std::string decoded; |
| 650 | if ( !decodeString( token, decoded ) ) |
| 651 | return false; |
| 652 | currentValue() = decoded; |
| 653 | return true; |
| 654 | } |
| 655 | |
| 656 | |
| 657 | bool |
nothing calls this directly
no test coverage detected