| 76 | } |
| 77 | |
| 78 | void TomlWriter::writeInt(const QString &key, qint64 value) |
| 79 | { |
| 80 | writeKeyPrefix(key); |
| 81 | m_out += QString::number(value); |
| 82 | m_out += QLatin1Char('\n'); |
| 83 | } |
| 84 | |
| 85 | void TomlWriter::writeDouble(const QString &key, double value) |
| 86 | { |
no outgoing calls
no test coverage detected