summaryrefslogtreecommitdiffstats
path: root/src/common/bit_field.h
diff options
context:
space:
mode:
authorbunnei <bunneidev@gmail.com>2014-12-22 06:12:43 +0100
committerbunnei <bunneidev@gmail.com>2014-12-22 06:12:43 +0100
commit2188af4a653d56fcaf59e90399beb2c355762140 (patch)
treeb9c5bf92b6cebe6ecb7de4685049afdbc54d839d /src/common/bit_field.h
parentMerge pull request #325 from yuriks/cmake-opts (diff)
parentMore warning cleanups (diff)
downloadyuzu-2188af4a653d56fcaf59e90399beb2c355762140.tar
yuzu-2188af4a653d56fcaf59e90399beb2c355762140.tar.gz
yuzu-2188af4a653d56fcaf59e90399beb2c355762140.tar.bz2
yuzu-2188af4a653d56fcaf59e90399beb2c355762140.tar.lz
yuzu-2188af4a653d56fcaf59e90399beb2c355762140.tar.xz
yuzu-2188af4a653d56fcaf59e90399beb2c355762140.tar.zst
yuzu-2188af4a653d56fcaf59e90399beb2c355762140.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 c38a3fb08..8eab054b8 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