diff options
Diffstat (limited to 'include/cru/toml/TomlParser.h')
-rw-r--r-- | include/cru/toml/TomlParser.h | 4 |
1 files changed, 2 insertions, 2 deletions
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<TomlDocument> cache_; }; |