Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions strings/base_string.h
Original file line number Diff line number Diff line change
Expand Up @@ -642,6 +642,7 @@ WINRT_EXPORT namespace winrt
return impl::hstring_convert(value);
}

#if !defined(_LIBCPP_VERSION) || _LIBCPP_VERSION >= 14000
inline hstring to_hstring(float value)
{
return impl::hstring_convert(value);
Expand All @@ -651,6 +652,7 @@ WINRT_EXPORT namespace winrt
{
return impl::hstring_convert(value);
}
#endif

inline hstring to_hstring(char16_t value)
{
Expand Down