Add missing include for ostringstream

Since region.hpp no longer includes <iostream> (but only <iomanip>),
source_location.hpp no longer includes a header that provides
std::ostringstream. Including <sstream> fixes this.
This commit is contained in:
Alex Merry 2020-12-09 10:15:38 +00:00
parent be0d4bd0a9
commit 935da51769

View File

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