| Index: courgette/encoded_program.h
|
| ===================================================================
|
| --- courgette/encoded_program.h (revision 80344)
|
| +++ courgette/encoded_program.h (working copy)
|
| @@ -68,10 +68,10 @@
|
| OP_LAST
|
| };
|
|
|
| - typedef std::vector<RVA, MemoryAllocator<RVA> > RvaVector;
|
| - typedef std::vector<uint32, MemoryAllocator<uint32> > UInt32Vector;
|
| - typedef std::vector<uint8, MemoryAllocator<uint8> > UInt8Vector;
|
| - typedef std::vector<OP, MemoryAllocator<OP> > OPVector;
|
| + typedef NoThrowBuffer<RVA> RvaVector;
|
| + typedef NoThrowBuffer<uint32> UInt32Vector;
|
| + typedef NoThrowBuffer<uint8> UInt8Vector;
|
| + typedef NoThrowBuffer<OP> OPVector;
|
|
|
| void DebuggingSummary();
|
| CheckBool GenerateBaseRelocations(SinkStream *buffer);
|
|
|