Skip to content

Commit

Permalink
[共通] fix #1215
Browse files Browse the repository at this point in the history
  • Loading branch information
Reputeless committed Mar 7, 2024
1 parent 4abface commit c81400c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Siv3D/include/Siv3D/detail/CSV.ipp
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ namespace s3d
template <class Reader, std::enable_if_t<std::is_base_of_v<IReader, Reader> && !std::is_lvalue_reference_v<Reader>>*>
inline bool CSV::load(Reader&& reader, const StringView separators, const StringView quotes, const StringView escapes)
{
return load(std::make_unique<Reader>(std::move(reader), separators, quotes, escapes));
return load(std::make_unique<Reader>(std::move(reader)), separators, quotes, escapes);
}

inline CSV::operator bool() const noexcept
Expand Down

0 comments on commit c81400c

Please sign in to comment.