From 9676499ab530562da87cb5febd1f5a81a41490b9 Mon Sep 17 00:00:00 2001 From: ToruNiina Date: Sun, 2 Jun 2019 15:29:34 +0900 Subject: [PATCH] refactor: move file inclusion to correct position --- toml/traits.hpp | 1 - toml/value.hpp | 1 + 2 files changed, 1 insertion(+), 1 deletion(-) diff --git a/toml/traits.hpp b/toml/traits.hpp index 7711900..55127a6 100644 --- a/toml/traits.hpp +++ b/toml/traits.hpp @@ -13,7 +13,6 @@ #endif // has_include() #endif // cplusplus >= C++17 -#include "comments.hpp" #include #include diff --git a/toml/value.hpp b/toml/value.hpp index 4dfdd0a..220915f 100644 --- a/toml/value.hpp +++ b/toml/value.hpp @@ -11,6 +11,7 @@ #include "region.hpp" #include "types.hpp" #include "source_location.hpp" +#include "comments.hpp" #include namespace toml