Procházet zdrojové kódy

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

Eugene Kozlov před 5 roky
rodič
revize
3c4a0a5489
1 změnil soubory, kde provedl 1 přidání a 1 odebrání
  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.
     /// Returns true if any flag is set.
-    operator bool () const
+    explicit operator bool () const
     {
     {
         return value_ != 0;
         return value_ != 0;
     }
     }