From c06ae14efca4e99171d679c45be0072c56ed5bc9 Mon Sep 17 00:00:00 2001 From: Wedge009 Date: Fri, 5 Apr 2019 17:42:47 +1100 Subject: [PATCH] VS2019 seems to complain if std::string is used but is not actually #included. --- src/quit_confirmation.hpp | 1 + src/synced_commands.hpp | 1 + 2 files changed, 2 insertions(+) diff --git a/src/quit_confirmation.hpp b/src/quit_confirmation.hpp index bbbe5f4c4aed..25376b271e76 100644 --- a/src/quit_confirmation.hpp +++ b/src/quit_confirmation.hpp @@ -18,6 +18,7 @@ class CVideo; #include #include +#include #include "utils/functional.hpp" diff --git a/src/synced_commands.hpp b/src/synced_commands.hpp index c4559a4e00ea..5b74e72ad858 100644 --- a/src/synced_commands.hpp +++ b/src/synced_commands.hpp @@ -16,6 +16,7 @@ #include #include +#include #include "utils/functional.hpp"