From f3a46fca05d09f3e6fb0bf73db61d15b2f0aa18e Mon Sep 17 00:00:00 2001 From: ToruNiina Date: Wed, 19 Apr 2017 14:18:46 +0900 Subject: [PATCH] remove needless include files --- test.cpp | 3 +++ toml.hpp | 6 ------ 2 files changed, 3 insertions(+), 6 deletions(-) diff --git a/test.cpp b/test.cpp index 317c110..3136f0f 100644 --- a/test.cpp +++ b/test.cpp @@ -1,4 +1,6 @@ #include "toml.hpp" +#include +#include int main() { @@ -68,6 +70,7 @@ int main() std::cout << toml::is_castable, toml::value_t::Table>::value << std::endl; std::cout << toml::is_castable::value << std::endl; std::cout << toml::is_castable, toml::value_t::Table>::value << std::endl; + std::cout << toml::is_castable, toml::value_t::Array>::value << std::endl; return 0; } diff --git a/toml.hpp b/toml.hpp index dae95cd..3189b34 100644 --- a/toml.hpp +++ b/toml.hpp @@ -30,13 +30,7 @@ #include #include #include -#include -#include -#include -#include -#include #include -#include #include #include #include