Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix(port): work around GCC false positive warning
GCC thinks that Memory_Resource::do_try_grow_in_place should be declared 'final', but it is overwritten by Linked_Bump_Allocator. Ignore GCC's false -Wsuggest-final-methods warning. After fixing -Wsuggest-final-methods, GCC decides to report that the entire Memory_Resource class can be marked final. Ignore this false -Wsuggest-final-types warning as well.
- Loading branch information