We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a5e9452 commit 58811e1Copy full SHA for 58811e1
1 file changed
strings/base_stringable_streams.h
@@ -1,8 +1,11 @@
1
2
#ifndef WINRT_LEAN_AND_MEAN
3
-inline std::wostream& operator<<(std::wostream& stream, winrt::Windows::Foundation::IStringable const& stringable)
+namespace winrt::Windows::Foundation
4
{
5
- stream << stringable.ToString();
6
- return stream;
+ inline std::wostream& operator<<(std::wostream& stream, winrt::Windows::Foundation::IStringable const& stringable)
+ {
7
+ stream << stringable.ToString();
8
+ return stream;
9
+ }
10
}
11
#endif
0 commit comments