summaryrefslogtreecommitdiff
path: root/src/common/bit_set.h
diff options
context:
space:
mode:
authorGravatar Jannik Vogel2016-12-03 21:08:02 +0100
committerGravatar Jannik Vogel2016-12-05 19:09:16 +0100
commit45d941d62e2accea92f5b5183afe760e69a618ac (patch)
tree123b8c13185b472a1fa413c3b8caf42980106207 /src/common/bit_set.h
parentMerge pull request #2269 from Subv/update_dynarmic (diff)
downloadyuzu-45d941d62e2accea92f5b5183afe760e69a618ac.tar.gz
yuzu-45d941d62e2accea92f5b5183afe760e69a618ac.tar.xz
yuzu-45d941d62e2accea92f5b5183afe760e69a618ac.zip
Support mingw cross-compile
Diffstat (limited to 'src/common/bit_set.h')
-rw-r--r--src/common/bit_set.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/common/bit_set.h b/src/common/bit_set.h
index c48b3b769..3059d0cb0 100644
--- a/src/common/bit_set.h
+++ b/src/common/bit_set.h
@@ -16,7 +16,7 @@ namespace Common {
16 16
17// Helper functions: 17// Helper functions:
18 18
19#ifdef _WIN32 19#ifdef _MSC_VER
20template <typename T> 20template <typename T>
21static inline int CountSetBits(T v) { 21static inline int CountSetBits(T v) {
22 // from https://graphics.stanford.edu/~seander/bithacks.html 22 // from https://graphics.stanford.edu/~seander/bithacks.html