| 164 | |
| 165 | template <std::size_t size> |
| 166 | void writeKeyValue(const char (&key)[size], const QString& value, QTextStream& stream) |
| 167 | { |
| 168 | stream << key << '=' << value << '\n'; |
| 169 | } |
| 170 | |
| 171 | template <std::size_t size> |
| 172 | void writeKeyValue(const char (&key)[size], bool value, QTextStream& stream) |
no outgoing calls
no test coverage detected