mirror of
				https://github.com/PabloMK7/citra.git
				synced 2025-10-30 21:30:04 +00:00 
			
		
		
		
	log/backend: Make use of erase_if
Same behavior, but less verbose.
This commit is contained in:
		
							parent
							
								
									173b84c8ff
								
							
						
					
					
						commit
						399f3d4e32
					
				
					 1 changed files with 4 additions and 4 deletions
				
			
		|  | @ -57,10 +57,10 @@ public: | |||
| 
 | ||||
|     void RemoveBackend(std::string_view backend_name) { | ||||
|         std::lock_guard lock{writing_mutex}; | ||||
|         const auto it = | ||||
|             std::remove_if(backends.begin(), backends.end(), | ||||
|                            [&backend_name](const auto& i) { return backend_name == i->GetName(); }); | ||||
|         backends.erase(it, backends.end()); | ||||
| 
 | ||||
|         std::erase_if(backends, [&backend_name](const auto& backend) { | ||||
|             return backend_name == backend->GetName(); | ||||
|         }); | ||||
|     } | ||||
| 
 | ||||
|     Backend* GetBackend(std::string_view backend_name) { | ||||
|  |  | |||
		Loading…
	
	Add table
		Add a link
		
	
		Reference in a new issue