mirror of
				https://github.com/Z3Prover/z3
				synced 2025-11-04 05:19:11 +00:00 
			
		
		
		
	temper warning messages from uninitalized pointers
This commit is contained in:
		
							parent
							
								
									4c070f9e76
								
							
						
					
					
						commit
						b0222cbdaa
					
				
					 1 changed files with 2 additions and 2 deletions
				
			
		| 
						 | 
				
			
			@ -472,7 +472,7 @@ public:
 | 
			
		|||
       that was already in the table.
 | 
			
		||||
     */
 | 
			
		||||
    data const & insert_if_not_there(data const & e) {
 | 
			
		||||
        entry * et;
 | 
			
		||||
        entry * et = nullptr;
 | 
			
		||||
        insert_if_not_there_core(e, et);
 | 
			
		||||
        return et->get_data();
 | 
			
		||||
    }
 | 
			
		||||
| 
						 | 
				
			
			@ -482,7 +482,7 @@ public:
 | 
			
		|||
       Return the entry that contains e.
 | 
			
		||||
    */
 | 
			
		||||
    entry * insert_if_not_there2(data const & e) {
 | 
			
		||||
        entry * et;
 | 
			
		||||
        entry * et = nullptr;
 | 
			
		||||
        insert_if_not_there_core(e, et);
 | 
			
		||||
        return et;
 | 
			
		||||
    }
 | 
			
		||||
| 
						 | 
				
			
			
 | 
			
		|||
		Loading…
	
	Add table
		Add a link
		
	
		Reference in a new issue