File tree Expand file tree Collapse file tree 1 file changed +1
-2
lines changed Expand file tree Collapse file tree 1 file changed +1
-2
lines changed Original file line number Diff line number Diff line change @@ -644,8 +644,6 @@ namespace cage
644644				[](const  auto  &a) -> String
645645				{
646646					using  T = std::decay_t <decltype (a)>;
647- 					// if constexpr (std::is_same_v<T, std::monostate>)
648- 					// 	return "";
649647					if  constexpr  (std::is_same_v<T, KeyboardMatcher>)
650648						return  Stringizer () + " key "   + a.key  + "  "   + (uint32)a.requiredFlags  + "  "   + (uint32)~a.forbiddenFlags ;
651649					if  constexpr  (std::is_same_v<T, ModifiersMatcher>)
@@ -654,6 +652,7 @@ namespace cage
654652						return  Stringizer () + " mouse "   + (uint32)a.button  + "  "   + (uint32)a.requiredFlags  + "  "   + (uint32)~a.forbiddenFlags ;
655653					if  constexpr  (std::is_same_v<T, WheelMatcher>)
656654						return  Stringizer () + " wheel "   + a.direction  + "  "   + (uint32)a.requiredFlags  + "  "   + (uint32)~a.forbiddenFlags ;
655+ 					return  " "  ;
657656				},
658657				mt);
659658		}
    
 
   
 
     
   
   
          
     
  
    
     
 
    
      
     
 
     
    You can’t perform that action at this time.
  
 
    
  
     
    
      
        
     
 
       
      
     
   
 
    
    
  
 
  
 
     
    
0 commit comments