mirror of
				https://github.com/Z3Prover/z3
				synced 2025-11-04 05:19:11 +00:00 
			
		
		
		
	remove equality check on container
This commit is contained in:
		
							parent
							
								
									ce69b54b5f
								
							
						
					
					
						commit
						674e1b8f98
					
				
					 1 changed files with 0 additions and 2 deletions
				
			
		| 
						 | 
				
			
			@ -700,8 +700,6 @@ public:
 | 
			
		|||
    expr_container(expr* const* pos, expr* const* end) :m_pos(pos), m_end(end) {}
 | 
			
		||||
    expr_container& operator++() { ++m_pos; return *this; }
 | 
			
		||||
    expr_container operator++(int) { expr_container tmp = *this; ++(*this); return tmp; }
 | 
			
		||||
    bool operator==(expr_container const& it) const { return m_pos == it.m_pos; }
 | 
			
		||||
    bool operator!=(expr_container const& it) const { return m_pos != it.m_pos; }
 | 
			
		||||
    expr* operator*() const { return *m_pos; }
 | 
			
		||||
    expr* const* begin() const { return m_pos; }
 | 
			
		||||
    expr* const* end() const { return m_end; }
 | 
			
		||||
| 
						 | 
				
			
			
 | 
			
		|||
		Loading…
	
	Add table
		Add a link
		
	
		Reference in a new issue