mirror of
				https://github.com/Z3Prover/z3
				synced 2025-10-29 18:52:29 +00:00 
			
		
		
		
	Fix g++ compile-time error
Signed-off-by: U-EUROPE\t-alexh <t-alexh@microsoft.com>
This commit is contained in:
		
							parent
							
								
									2e627e78bc
								
							
						
					
					
						commit
						b882a94f6a
					
				
					 1 changed files with 2 additions and 2 deletions
				
			
		|  | @ -103,8 +103,8 @@ tbv* tbv_manager::allocate(char const* bv) { | |||
|     tbv* result = allocateX(); | ||||
|     unsigned i = 0, sz = num_tbits(); | ||||
|     while(*bv && i < sz) { | ||||
|         if (*bv == '0') set(*result, i++, tbit::BIT_0); | ||||
|         else if (*bv == '1') set(*result, i++, tbit::BIT_1); | ||||
|         if (*bv == '0') set(*result, i++, BIT_0); | ||||
|         else if (*bv == '1') set(*result, i++, BIT_1); | ||||
|         else if (*bv == '*') i++; | ||||
|         else if (i == 0 && (*bv == ' ' || *bv == '\t')) ; | ||||
|         else break; | ||||
|  |  | |||
		Loading…
	
	Add table
		Add a link
		
	
		Reference in a new issue