aboutsummaryrefslogtreecommitdiff
path: root/src/toml
diff options
context:
space:
mode:
authorcrupest <crupest@outlook.com>2022-02-08 16:53:51 +0800
committercrupest <crupest@outlook.com>2022-02-08 16:53:51 +0800
commit74bb9cd27242b9320f99ff4d2b50c3051576cc14 (patch)
tree744bac5799c593d1d6f81e7b09581bea626f2cde /src/toml
parentb90c398de829d1ba5329651d75bae82f5e4085fe (diff)
downloadcru-74bb9cd27242b9320f99ff4d2b50c3051576cc14.tar.gz
cru-74bb9cd27242b9320f99ff4d2b50c3051576cc14.tar.bz2
cru-74bb9cd27242b9320f99ff4d2b50c3051576cc14.zip
...
Diffstat (limited to 'src/toml')
-rw-r--r--src/toml/TomlDocument.cpp2
-rw-r--r--src/toml/TomlParser.cpp4
2 files changed, 3 insertions, 3 deletions
diff --git a/src/toml/TomlDocument.cpp b/src/toml/TomlDocument.cpp
index 052af170..e9351538 100644
--- a/src/toml/TomlDocument.cpp
+++ b/src/toml/TomlDocument.cpp
@@ -1,4 +1,4 @@
-#include "cru/toml/TomlDocument.hpp"
+#include "cru/toml/TomlDocument.h"
namespace cru::toml {
std::optional<String> TomlSection::GetValue(const String& key) const {
diff --git a/src/toml/TomlParser.cpp b/src/toml/TomlParser.cpp
index 5a11404e..7c29e0be 100644
--- a/src/toml/TomlParser.cpp
+++ b/src/toml/TomlParser.cpp
@@ -1,5 +1,5 @@
-#include "cru/toml/TomlParser.hpp"
-#include "cru/toml/TomlDocument.hpp"
+#include "cru/toml/TomlParser.h"
+#include "cru/toml/TomlDocument.h"
namespace cru::toml {
TomlParser::TomlParser(String input) : input_(std::move(input)) {}