From d9fc4833329fae5723204cf5c843f739e399a6d3 Mon Sep 17 00:00:00 2001 From: doe300 Date: Thu, 16 Jun 2022 13:43:09 +0200 Subject: [PATCH] Add missing headers required for GCC 11 compilation --- src/cmake.cpp | 1 + src/meson.cpp | 1 + src/project_build.cpp | 1 + 3 files changed, 3 insertions(+) diff --git a/src/cmake.cpp b/src/cmake.cpp index 177ec81..7b37e50 100644 --- a/src/cmake.cpp +++ b/src/cmake.cpp @@ -7,6 +7,7 @@ #include "utility.hpp" #include #include +#include #include #include diff --git a/src/meson.cpp b/src/meson.cpp index 33ac0da..91f75b1 100644 --- a/src/meson.cpp +++ b/src/meson.cpp @@ -7,6 +7,7 @@ #include "terminal.hpp" #include "utility.hpp" #include +#include #include #include diff --git a/src/project_build.cpp b/src/project_build.cpp index 5d37f2e..1189ed9 100644 --- a/src/project_build.cpp +++ b/src/project_build.cpp @@ -4,6 +4,7 @@ #include "json.hpp" #include "terminal.hpp" #include +#include #include std::unique_ptr Project::Build::create(const boost::filesystem::path &path) {