| Index: runtime/vm/snapshot_test.cc
|
| ===================================================================
|
| --- runtime/vm/snapshot_test.cc (revision 20419)
|
| +++ runtime/vm/snapshot_test.cc (working copy)
|
| @@ -744,9 +744,9 @@
|
|
|
| class TestSnapshotWriter : public SnapshotWriter {
|
| public:
|
| - static const intptr_t kIncrementSize = 64 * KB;
|
| + static const intptr_t kInitialSize = 64 * KB;
|
| TestSnapshotWriter(uint8_t** buffer, ReAlloc alloc)
|
| - : SnapshotWriter(Snapshot::kScript, buffer, alloc, kIncrementSize) {
|
| + : SnapshotWriter(Snapshot::kScript, buffer, alloc, kInitialSize) {
|
| ASSERT(buffer != NULL);
|
| ASSERT(alloc != NULL);
|
| }
|
|
|