remove needless include files

This commit is contained in:
ToruNiina
2017-04-19 14:18:46 +09:00
parent 9fea72930f
commit f3a46fca05
2 changed files with 3 additions and 6 deletions

View File

@@ -1,4 +1,6 @@
#include "toml.hpp"
#include <map>
#include <list>
int main()
{
@@ -68,6 +70,7 @@ int main()
std::cout << toml::is_castable<std::map<std::string, int>, toml::value_t::Table>::value << std::endl;
std::cout << toml::is_castable<int, toml::value_t::Table>::value << std::endl;
std::cout << toml::is_castable<std::map<int, std::string>, toml::value_t::Table>::value << std::endl;
std::cout << toml::is_castable<std::list<int>, toml::value_t::Array>::value << std::endl;
return 0;
}

View File

@@ -30,13 +30,7 @@
#include <memory>
#include <string>
#include <vector>
#include <array>
#include <deque>
#include <list>
#include <map>
#include <set>
#include <unordered_map>
#include <unordered_set>
#include <chrono>
#include <iomanip>
#include <iostream>