Explicitly qualify a method.
Either clang or cl has a bug: cl accepts the unqualified (inherited) method name, clang rejects it. Both accept the qualified name.
This commit is contained in:
committed by
David Chisnall
parent
71cfb6da1e
commit
6af4c97726
@@ -104,7 +104,8 @@ namespace snmalloc
|
||||
// the stack.
|
||||
if (slab->get_kind() != Decommitted)
|
||||
{
|
||||
notify_not_using(((char*)slab) + OS_PAGE_SIZE, decommit_size);
|
||||
MemoryProviderState::notify_not_using(
|
||||
((char*)slab) + OS_PAGE_SIZE, decommit_size);
|
||||
}
|
||||
// Once we've removed these from the stack, there will be no
|
||||
// concurrent accesses and removal should have established a
|
||||
|
||||
Reference in New Issue
Block a user