From 9e4419826b3e23c63567591701a2834a837da98e Mon Sep 17 00:00:00 2001 From: Yuqian Yang Date: Fri, 17 Oct 2025 09:46:56 +0800 Subject: Toml remove String. --- include/cru/toml/TomlParser.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'include/cru/toml/TomlParser.h') diff --git a/include/cru/toml/TomlParser.h b/include/cru/toml/TomlParser.h index 76c270c3..b6532931 100644 --- a/include/cru/toml/TomlParser.h +++ b/include/cru/toml/TomlParser.h @@ -14,7 +14,7 @@ class CRU_TOML_API TomlParsingException : public Exception { class CRU_TOML_API TomlParser { public: - explicit TomlParser(String input); + explicit TomlParser(std::string input); CRU_DELETE_COPY(TomlParser) CRU_DELETE_MOVE(TomlParser) @@ -29,7 +29,7 @@ class CRU_TOML_API TomlParser { void DoParse(TomlDocument& document); private: - String input_; + std::string input_; std::optional cache_; }; -- cgit v1.2.3