From 87071200872c2450c947047350132aee493033c1 Mon Sep 17 00:00:00 2001 From: Dominick Allen Date: Thu, 2 Jan 2025 15:11:51 -0600 Subject: Get basic CSV parser operating. --- source/fud_string.cpp | 4 ---- 1 file changed, 4 deletions(-) (limited to 'source/fud_string.cpp') diff --git a/source/fud_string.cpp b/source/fud_string.cpp index cd3e918..2a17201 100644 --- a/source/fud_string.cpp +++ b/source/fud_string.cpp @@ -131,10 +131,6 @@ StringResult String::from(StringView view, Allocator* allocator) return StringResult::error(FudStatus::ArgumentInvalid); } - if (view.nullTerminated()) { - return StringResult::error(FudStatus::ArgumentInvalid); - } - String output{}; output.m_allocator = reinterpret_cast(allocator); size_t outputCapacity = view.length() + 1U; -- cgit v1.2.3