| 83 | } |
| 84 | |
| 85 | std::string StringTemplate::modifiedSource() const |
| 86 | { |
| 87 | std::string source = m_internal->string(); |
| 88 | |
| 89 | for (const auto & pair: m_replacements) |
| 90 | replaceAll(source, pair.first, pair.second); |
| 91 | |
| 92 | return source; |
| 93 | } |
| 94 | |
| 95 | |
| 96 | } // namespace globjects |
nothing calls this directly
no test coverage detected