mirror of
				https://github.com/RGBCube/serenity
				synced 2025-10-31 13:32:45 +00:00 
			
		
		
		
	 470c99a2a6
			
		
	
	
		470c99a2a6
		
	
	
	
	
		
			
			Make this API take a Span<Cell*> instead of a Vector<Cell*>&. This is behavior neutral, but stops the API looking like it wants to do mutable things to the Vector.
		
			
				
	
	
		
			33 lines
		
	
	
	
		
			566 B
		
	
	
	
		
			C++
		
	
	
	
	
	
			
		
		
	
	
			33 lines
		
	
	
	
		
			566 B
		
	
	
	
		
			C++
		
	
	
	
	
	
| /*
 | |
|  * Copyright (c) 2021, Idan Horowitz <idan.horowitz@serenityos.org>
 | |
|  *
 | |
|  * SPDX-License-Identifier: BSD-2-Clause
 | |
|  */
 | |
| 
 | |
| #pragma once
 | |
| 
 | |
| #include <AK/IntrusiveList.h>
 | |
| 
 | |
| namespace JS {
 | |
| 
 | |
| class WeakContainer {
 | |
| public:
 | |
|     explicit WeakContainer(Heap&);
 | |
|     virtual ~WeakContainer();
 | |
| 
 | |
|     virtual void remove_swept_cells(Badge<Heap>, Span<Cell*>) = 0;
 | |
| 
 | |
| protected:
 | |
|     void deregister();
 | |
| 
 | |
| private:
 | |
|     bool m_registered { true };
 | |
|     Heap& m_heap;
 | |
| 
 | |
|     IntrusiveListNode<WeakContainer> m_list_node;
 | |
| 
 | |
| public:
 | |
|     using List = IntrusiveList<&WeakContainer::m_list_node>;
 | |
| };
 | |
| 
 | |
| }
 |