| 43 | |
| 44 | template<typename... Args> |
| 45 | wxString wxformat(wxString const& fmt, Args&&... args) { |
| 46 | boost::interprocess::basic_vectorstream<std::basic_string<wxStringCharType>> out; |
| 47 | format(out, fmt.wx_str(), std::forward<Args>(args)...); |
| 48 | return out.vector(); |
| 49 | } |
| 50 | |
| 51 | template<typename... Args> |
| 52 | wxString wxformat(const wxStringCharType *fmt, Args&&... args) { |
no test coverage detected