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