Blob Blame History Raw
From 2bef0fb68bb6ed673fd05f7b7f7f96dd704201c4 Mon Sep 17 00:00:00 2001
From: Logan Bateman <lbateman0199@gmail.com>
Date: Tue, 2 Jun 2020 12:59:50 -0400
Subject: [PATCH] Explicitly include std::string - small build fix

---
 src/battlelist.h     | 1 +
 src/utils/sortutil.h | 1 +
 2 files changed, 2 insertions(+)

diff --git a/src/battlelist.h b/src/battlelist.h
index f2470fe03..e7c49ee29 100644
--- a/src/battlelist.h
+++ b/src/battlelist.h
@@ -16,6 +16,7 @@ lsl/container/battlelist.h
 
 
 #include <map>
+#include <string>
 #include "utils/mixins.h"
 
 class IBattle;
diff --git a/src/utils/sortutil.h b/src/utils/sortutil.h
index a91b7f3bb..a0b664451 100644
--- a/src/utils/sortutil.h
+++ b/src/utils/sortutil.h
@@ -4,6 +4,7 @@
 #define SPRINGLOBBY_SORTUTIL_H_INCLUDED
 
 #include <map>
+#include <string>
 //! set direction to +1 for down, -1 for up
 struct SortOrderItem {
 	int col;