| 10094 | // --------------------------------------------------------------------------- |
| 10095 | |
| 10096 | void PROJStringFormatter::Private::appendToResult(const char *str) { |
| 10097 | if (!result_.empty()) { |
| 10098 | result_ += ' '; |
| 10099 | } |
| 10100 | result_ += str; |
| 10101 | } |
| 10102 | |
| 10103 | // --------------------------------------------------------------------------- |
| 10104 |