Replace Allocator with Alloc or AllocOnly where possible

This commit is contained in:
Joshua Warner
2014-05-05 07:31:52 -06:00
parent fa1e3d74c0
commit 4d79f3bea1
12 changed files with 22 additions and 22 deletions

View File

@ -20,7 +20,7 @@ class Zone;
namespace avian {
namespace util {
class Allocator;
class Alloc;
}
namespace codegen {
@ -143,7 +143,7 @@ class Architecture {
unsigned cSize,
OperandMask& cMask) = 0;
virtual Assembler* makeAssembler(util::Allocator*, vm::Zone*) = 0;
virtual Assembler* makeAssembler(util::Alloc*, vm::Zone*) = 0;
virtual void acquire() = 0;
virtual void release() = 0;