Add missing return statement to CustomAllocator::operator=

This commit is contained in:
Tristan Penman 2016-11-07 22:58:58 -08:00
parent c5f2852029
commit 187c66d06c

View File

@ -50,6 +50,8 @@ public:
{
allocFn = other.allocFn;
freeFn = other.freeFn;
return *this;
}
pointer address(reference r)