Fix crash with fmt
This commit is contained in:
		
							parent
							
								
									fb56f89ced
								
							
						
					
					
						commit
						9b41b95934
					
				| 
						 | 
				
			
			@ -23,7 +23,7 @@ namespace fmt {
 | 
			
		|||
        constexpr auto parse(ParseContext& ctx) -> decltype (ctx.begin()) {
 | 
			
		||||
          auto it = ctx.begin(), end = ctx.end();
 | 
			
		||||
          if (it != end && *it == ':') ++it;
 | 
			
		||||
          if (*it == '>' || *it == '<' || *it == '=') {
 | 
			
		||||
          if (it && (*it == '>' || *it == '<' || *it == '=')) {
 | 
			
		||||
            spec = *it;
 | 
			
		||||
            ++it;
 | 
			
		||||
          }
 | 
			
		||||
| 
						 | 
				
			
			
 | 
			
		|||
		Loading…
	
		Reference in New Issue