From 947c9951894f90392c1945ddde3639f085d8227d Mon Sep 17 00:00:00 2001 From: ToruNiina Date: Wed, 11 Oct 2023 01:43:43 +0900 Subject: [PATCH] fix: include array to use char buffer --- toml/exception.hpp | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/toml/exception.hpp b/toml/exception.hpp index 72a4a62..3702a8d 100644 --- a/toml/exception.hpp +++ b/toml/exception.hpp @@ -2,8 +2,11 @@ // Distributed under the MIT License. #ifndef TOML11_EXCEPTION_HPP #define TOML11_EXCEPTION_HPP -#include + +#include #include +#include + #include #include "source_location.hpp"