Skip to content
Snippets Groups Projects
Commit 36090521 authored by Lioncash's avatar Lioncash
Browse files

bit_field: Convert ToBool() into explicit operator bool

Gets rid of a TODO that is long overdue.
parent bf89a998
No related branches found
No related tags found
No related merge requests found
......@@ -178,8 +178,7 @@ public:
return ExtractValue(storage);
}
// TODO: we may want to change this to explicit operator bool() if it's bug-free in VS2015
constexpr FORCE_INLINE bool ToBool() const {
constexpr explicit operator bool() const {
return Value() != 0;
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment