From 935da51769ad40732879780214c1ac674b37f621 Mon Sep 17 00:00:00 2001 From: Alex Merry Date: Wed, 9 Dec 2020 10:15:38 +0000 Subject: [PATCH] Add missing include for ostringstream Since region.hpp no longer includes (but only ), source_location.hpp no longer includes a header that provides std::ostringstream. Including fixes this. --- toml/source_location.hpp | 1 + 1 file changed, 1 insertion(+) diff --git a/toml/source_location.hpp b/toml/source_location.hpp index a386710..fa175b5 100644 --- a/toml/source_location.hpp +++ b/toml/source_location.hpp @@ -3,6 +3,7 @@ #ifndef TOML11_SOURCE_LOCATION_HPP #define TOML11_SOURCE_LOCATION_HPP #include +#include #include "region.hpp"