Browse Source

Removed "explicit" keyword from primitive type operators

pcmattulat 4 years ago
parent
commit
5e2ef7f7c9
2 changed files with 2 additions and 2 deletions
  1. 1 1
      source/boxing/Boolean.hpp
  2. 1 1
      source/boxing/Integer.hpp

+ 1 - 1
source/boxing/Boolean.hpp

@@ -23,7 +23,7 @@ namespace ls_std {
 
 
       // conversion operator
       // conversion operator
 
 
-      explicit operator bool() const;
+      operator bool() const;
 
 
       // assignment operators
       // assignment operators
 
 

+ 1 - 1
source/boxing/Integer.hpp

@@ -23,7 +23,7 @@ namespace ls_std {
 
 
       // conversion operator
       // conversion operator
 
 
-      explicit operator int() const;
+      operator int() const;
 
 
       // assignment operators
       // assignment operators