mirror of
https://github.com/ArthurSonzogni/FTXUI.git
synced 2024-11-26 12:37:06 +08:00
ef0de8d873
[nxxm](https://nxxm.github.io)
10 lines
207 B
C++
10 lines
207 B
C++
#include <string>
|
|
|
|
std::string to_string(const std::wstring& s);
|
|
std::wstring to_wstring(const std::string& s);
|
|
|
|
template<typename T>
|
|
std::wstring to_wstring(T s) {
|
|
return to_wstring(std::to_string(s));
|
|
}
|