Browse Source

Make FlagSet to bool conversion operator explicit. Fixes #2631.

Eugene Kozlov 5 năm trước cách đây
mục cha
commit
3c4a0a5489
1 tập tin đã thay đổi với 1 bổ sung1 xóa
  1. 1 1
      Source/Urho3D/Container/FlagSet.h

+ 1 - 1
Source/Urho3D/Container/FlagSet.h

@@ -163,7 +163,7 @@ public:
     }
 
     /// Returns true if any flag is set.
-    operator bool () const
+    explicit operator bool () const
     {
         return value_ != 0;
     }