Skip to content
Merged
Show file tree
Hide file tree
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
4 changes: 2 additions & 2 deletions strings/base_types.h
Original file line number Diff line number Diff line change
Expand Up @@ -159,12 +159,12 @@ WINRT_EXPORT namespace winrt

#endif

constexpr explicit guid(std::string_view const value) noexcept :
constexpr explicit guid(std::string_view const value) :
guid(parse(value))
{
}

constexpr explicit guid(std::wstring_view const value) noexcept :
constexpr explicit guid(std::wstring_view const value) :
guid(parse(value))
{
}
Expand Down
Loading