summaryrefslogtreecommitdiffstats
path: root/src/common/bit_field.h
diff options
context:
space:
mode:
authorChin <chin.bimbo@gmail.com>2014-12-21 00:28:17 +0100
committerChin <chin.bimbo@gmail.com>2014-12-21 16:58:55 +0100
commit0199a7d9ef26516779f73192dd41738ce4116c20 (patch)
tree1b1529ae3d9e4e8e3d47d96893571a2eeb9fa4a2 /src/common/bit_field.h
parentMerge pull request #316 from yuriks/thread-handle (diff)
downloadyuzu-0199a7d9ef26516779f73192dd41738ce4116c20.tar
yuzu-0199a7d9ef26516779f73192dd41738ce4116c20.tar.gz
yuzu-0199a7d9ef26516779f73192dd41738ce4116c20.tar.bz2
yuzu-0199a7d9ef26516779f73192dd41738ce4116c20.tar.lz
yuzu-0199a7d9ef26516779f73192dd41738ce4116c20.tar.xz
yuzu-0199a7d9ef26516779f73192dd41738ce4116c20.tar.zst
yuzu-0199a7d9ef26516779f73192dd41738ce4116c20.zip
Diffstat (limited to 'src/common/bit_field.h')
-rw-r--r--src/common/bit_field.h6
1 files changed, 6 insertions, 0 deletions
diff --git a/src/common/bit_field.h b/src/common/bit_field.h
index 3ec061e63..7c633f01f 100644
--- a/src/common/bit_field.h
+++ b/src/common/bit_field.h
@@ -168,6 +168,12 @@ public:
}
}
+ // TODO: we may want to change this to explicit operator bool() if it's bug-free in VS2015
+ __forceinline bool ToBool() const
+ {
+ return Value() != 0;
+ }
+
private:
// StorageType is T for non-enum types and the underlying type of T if
// T is an enumeration. Note that T is wrapped within an enable_if in the