From 6c3737a7862407b4ae609cfaee4503c81891dc6d Mon Sep 17 00:00:00 2001 From: Lioncash Date: Tue, 21 Aug 2018 06:39:42 -0400 Subject: [PATCH] bit_field: Convert ToBool() into explicit operator bool Gets rid of a TODO that is long overdue. --- src/common/bit_field.h | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/src/common/bit_field.h b/src/common/bit_field.h index 0cc0a1be0..a3f889424 100644 --- a/src/common/bit_field.h +++ b/src/common/bit_field.h @@ -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 - FORCE_INLINE bool ToBool() const { + constexpr explicit operator bool() const { return Value() != 0; }