From b7cda29b96229a76ca8ffba6a087d156dafc7432 Mon Sep 17 00:00:00 2001 From: "Dirk-Jan C. Binnema" Date: Thu, 18 Jul 2019 16:16:08 +0300 Subject: [PATCH] mu-runtime: include string Was missing, and breaks compilation in some environments. --- lib/mu-runtime.cc | 2 ++ 1 file changed, 2 insertions(+) diff --git a/lib/mu-runtime.cc b/lib/mu-runtime.cc index e4ea62a8..394acd5c 100644 --- a/lib/mu-runtime.cc +++ b/lib/mu-runtime.cc @@ -21,6 +21,8 @@ #include "mu-util.h" #include /* for setlocale() */ + +#include #include static std::unordered_map RuntimePaths;