From 860ccf2a4128bc58dd080f9af10a669a8095bcd1 Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?Tom=C3=A1=C5=A1=20Chv=C3=A1tal?= <tomas.chvatal@gmail.com>
Date: Wed, 30 Sep 2020 11:29:06 +0200
Subject: [PATCH] Fix compilation with boost 1.74.0

The serialization module was heavily changed and it now this header needs to be included as it is relied in many other parts of citra.
---
 src/core/frontend/applets/mii_selector.h | 1 +
 1 file changed, 1 insertion(+)

diff --git a/src/core/frontend/applets/mii_selector.h b/src/core/frontend/applets/mii_selector.h
index ae63e359a..53578282b 100644
--- a/src/core/frontend/applets/mii_selector.h
+++ b/src/core/frontend/applets/mii_selector.h
@@ -6,6 +6,7 @@
 
 #include <memory>
 #include <string>
+#include <boost/serialization/version.hpp>
 #include "core/hle/applets/mii_selector.h"
 
 namespace Frontend {