Merge pull request #144 from amerry/sstream-include-fix

Add missing standard includes
This commit is contained in:
Toru Niina
2020-12-10 01:53:31 +09:00
committed by GitHub
2 changed files with 2 additions and 0 deletions

View File

@@ -4,6 +4,7 @@
#define TOML11_COMMENTS_HPP
#include <initializer_list>
#include <iterator>
#include <stdexcept>
#include <string>
#include <type_traits>
#include <utility>

View File

@@ -3,6 +3,7 @@
#ifndef TOML11_SOURCE_LOCATION_HPP
#define TOML11_SOURCE_LOCATION_HPP
#include <cstdint>
#include <sstream>
#include "region.hpp"