Assignment operators
Declared in <llvm/ADT/PagedVector.h>
Copy assignment is deleted; pages are not shareable across vectors.
PagedVector&
operator=(PagedVector const& Other) = delete;
» more...
Move assignment is deleted; pages are not shareable across vectors.
PagedVector&
operator=(PagedVector&& Other) = delete;
» more...
| Name | Description |
|---|---|
| Other | Unused; this assignment is deleted. |