From c81400c5a39405d66843c07ce1cf90f46e01a86a Mon Sep 17 00:00:00 2001 From: Ryo Suzuki Date: Fri, 8 Mar 2024 00:16:23 +0900 Subject: [PATCH] =?UTF-8?q?[=E5=85=B1=E9=80=9A]=20fix=20#1215?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- Siv3D/include/Siv3D/detail/CSV.ipp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Siv3D/include/Siv3D/detail/CSV.ipp b/Siv3D/include/Siv3D/detail/CSV.ipp index fce47ec41..5989e8f4e 100644 --- a/Siv3D/include/Siv3D/detail/CSV.ipp +++ b/Siv3D/include/Siv3D/detail/CSV.ipp @@ -22,7 +22,7 @@ namespace s3d template && !std::is_lvalue_reference_v>*> inline bool CSV::load(Reader&& reader, const StringView separators, const StringView quotes, const StringView escapes) { - return load(std::make_unique(std::move(reader), separators, quotes, escapes)); + return load(std::make_unique(std::move(reader)), separators, quotes, escapes); } inline CSV::operator bool() const noexcept