Creates a key and a value as a string
| 596 | |
| 597 | //Creates a key and a value as a string |
| 598 | fini_string_t makeKeyValue(const key_t& key, const value_t& value) |
| 599 | { |
| 600 | fini_sstream_t line; |
| 601 | line << key << '=' << value << std::endl; |
| 602 | |
| 603 | return line.str(); |
| 604 | } |
| 605 | }; |
| 606 | |
| 607 | ///Definitions |
nothing calls this directly
no outgoing calls
no test coverage detected