Rename all member variables to follow the style guidelines (prefixed with the 'm') - class NetStringTable

This commit is contained in:
bank 2014-05-13 16:58:06 +04:00
parent bcb0b8e088
commit d6b003e508
2 changed files with 79 additions and 79 deletions

View file

@ -60,14 +60,14 @@ class NetStringTable
U32 prevLink;
U32 seq;
};
U32 size;
U32 firstFree;
U32 firstValid;
U32 sequenceCount;
U32 mSize;
U32 mFirstFree;
U32 mFirstValid;
U32 mSequenceCount;
Entry *table;
U32 hashTable[HashTableSize];
DataChunker *allocator;
Entry *mTable;
U32 mHashTable[HashTableSize];
DataChunker *mAllocator;
NetStringTable();
~NetStringTable();