mirror of
				https://github.com/ethereum/solidity
				synced 2023-10-03 13:03:40 +00:00 
			
		
		
		
	Fix ownership.
This commit is contained in:
		
							parent
							
								
									582c754598
								
							
						
					
					
						commit
						6cf830742d
					
				| @ -38,7 +38,7 @@ | ||||
| /// Operators need to stay in the global namespace.
 | ||||
| 
 | ||||
| /// Concatenate the contents of a container onto a vector
 | ||||
| template <class T, class U> std::vector<T>& operator+=(std::vector<T>& _a, U const& _b) | ||||
| template <class T, class U> std::vector<T>& operator+=(std::vector<T>& _a, U& _b) | ||||
| { | ||||
| 	for (auto const& i: _b) | ||||
| 		_a.push_back(i); | ||||
|  | ||||
		Loading…
	
		Reference in New Issue
	
	Block a user