diff options
author | Roland Reichwein <mail@reichwein.it> | 2022-01-06 15:30:02 +0100 |
---|---|---|
committer | Roland Reichwein <mail@reichwein.it> | 2022-01-06 15:30:02 +0100 |
commit | 69e14c9f3a9fe35a80a22f121969cef914ede063 (patch) | |
tree | eb6f78e0e28119ff8d757b794344bc55a01bb1c1 /src/test-helper.h | |
parent | fceee089c114e8510fd1e7f06f258b5d67cf23bf (diff) |
Adjustments for msbuild
Diffstat (limited to 'src/test-helper.h')
-rw-r--r-- | src/test-helper.h | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/src/test-helper.h b/src/test-helper.h index c3e2900..676af73 100644 --- a/src/test-helper.h +++ b/src/test-helper.h @@ -14,6 +14,12 @@ namespace std { std::ostream& operator<<(std::ostream& os, std::basic_string<char16_t> const& s); std::ostream& operator<<(std::ostream& os, std::basic_string<char32_t> const& s); +#ifdef __cpp_char8_t + std::ostream& operator<<(std::ostream& os, utf8_t const& c); +#endif + std::ostream& operator<<(std::ostream& os, char16_t const& c); + std::ostream& operator<<(std::ostream& os, char32_t const& c); + } // namespace std template<typename From, typename To> |