Update P0959.md

to_string() and to_wstring() are inline
This commit is contained in:
Marius Bancila 2018-05-15 09:43:58 +03:00 committed by GitHub
parent 13c6d59115
commit 114a0e5e90
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -385,8 +385,8 @@ namespace std {
template <class Elem, class Traits>
std::basic_ostream<Elem, Traits> & operator<<(std::basic_ostream<Elem, Traits> &s, uuid const & id);
std::string to_string(uuid const & id);
std::wstring to_wstring(uuid const & id);
inline std::string to_string(uuid const & id);
inline std::wstring to_wstring(uuid const & id);
}
```