From 9f279f77fc41a6d8640b1e8fb0738bf9d38551d2 Mon Sep 17 00:00:00 2001 From: hdcmeta Date: Thu, 7 Jan 2016 19:17:35 -0800 Subject: [PATCH] Add missing include, this was previously masked by PCH usage --- Source/Core/Common/BitSet.h | 3 +++ 1 file changed, 3 insertions(+) diff --git a/Source/Core/Common/BitSet.h b/Source/Core/Common/BitSet.h index 25d3e8ba2d..97f54b1362 100644 --- a/Source/Core/Common/BitSet.h +++ b/Source/Core/Common/BitSet.h @@ -10,6 +10,9 @@ // Helper functions: #ifdef _WIN32 + +#include + template static inline int CountSetBits(T v) {