diff options
| author | 2014-12-22 00:12:43 -0500 | |
|---|---|---|
| committer | 2014-12-22 00:12:43 -0500 | |
| commit | 2188af4a653d56fcaf59e90399beb2c355762140 (patch) | |
| tree | b9c5bf92b6cebe6ecb7de4685049afdbc54d839d /src/common | |
| parent | Merge pull request #325 from yuriks/cmake-opts (diff) | |
| parent | More warning cleanups (diff) | |
| download | yuzu-2188af4a653d56fcaf59e90399beb2c355762140.tar.gz yuzu-2188af4a653d56fcaf59e90399beb2c355762140.tar.xz yuzu-2188af4a653d56fcaf59e90399beb2c355762140.zip | |
Merge pull request #322 from chinhodado/master
More warning cleanups
Diffstat (limited to 'src/common')
| -rw-r--r-- | src/common/bit_field.h | 6 |
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: | |||
| 168 | } | 168 | } |
| 169 | } | 169 | } |
| 170 | 170 | ||
| 171 | // TODO: we may want to change this to explicit operator bool() if it's bug-free in VS2015 | ||
| 172 | __forceinline bool ToBool() const | ||
| 173 | { | ||
| 174 | return Value() != 0; | ||
| 175 | } | ||
| 176 | |||
| 171 | private: | 177 | private: |
| 172 | // StorageType is T for non-enum types and the underlying type of T if | 178 | // StorageType is T for non-enum types and the underlying type of T if |
| 173 | // T is an enumeration. Note that T is wrapped within an enable_if in the | 179 | // T is an enumeration. Note that T is wrapped within an enable_if in the |