| Index: src/preparse-data-format.h
|
| diff --git a/src/preparse-data-format.h b/src/preparse-data-format.h
|
| index 216793637a87b2c0b4380374ffd2f5fa69fe5bf1..4d1ad7abbfa30708a751dc8ca257a44fd16b5584 100644
|
| --- a/src/preparse-data-format.h
|
| +++ b/src/preparse-data-format.h
|
| @@ -14,15 +14,14 @@ struct PreparseDataConstants {
|
| public:
|
| // Layout and constants of the preparse data exchange format.
|
| static const unsigned kMagicNumber = 0xBadDead;
|
| - static const unsigned kCurrentVersion = 8;
|
| + static const unsigned kCurrentVersion = 9;
|
|
|
| static const int kMagicOffset = 0;
|
| static const int kVersionOffset = 1;
|
| static const int kHasErrorOffset = 2;
|
| static const int kFunctionsSizeOffset = 3;
|
| - static const int kSymbolCountOffset = 4;
|
| - static const int kSizeOffset = 5;
|
| - static const int kHeaderSize = 6;
|
| + static const int kSizeOffset = 4;
|
| + static const int kHeaderSize = 5;
|
|
|
| // If encoding a message, the following positions are fixed.
|
| static const int kMessageStartPos = 0;
|
|
|