From 198114025781b53a39f95e76b85b2edb761e592a Mon Sep 17 00:00:00 2001 From: Jacek Caban Date: Mon, 26 Aug 2019 15:31:16 +0200 Subject: [PATCH] [dxvk] Explicitly include unordered_map in dxvk_renderpass.h When using libstdc++, it's somehow implicitly included, but it's not the case for libc++. --- src/dxvk/dxvk_renderpass.h | 1 + 1 file changed, 1 insertion(+) diff --git a/src/dxvk/dxvk_renderpass.h b/src/dxvk/dxvk_renderpass.h index f518f24da..15bca81d3 100644 --- a/src/dxvk/dxvk_renderpass.h +++ b/src/dxvk/dxvk_renderpass.h @@ -2,6 +2,7 @@ #include #include +#include #include "dxvk_hash.h" #include "dxvk_include.h"