diff options
| author | click <click@gonnamakeyou.com> | 2012-11-27 02:24:12 +0100 |
|---|---|---|
| committer | click <click@gonnamakeyou.com> | 2012-11-27 02:24:12 +0100 |
| commit | 1d7105914a8bf3c5ffda4f1c59f9a98576c1bcd2 (patch) | |
| tree | 2fb19dd78495a970057e678c6b39ba20058b13fa /src/tools/map_extractor | |
| parent | 8ef48ecc99caa9c28b7d53bb45e6bd56872170a1 (diff) | |
Core: Fix some silly warnings (some stupid remnants from old times that has bugged me enough)
No need to recompiling anything, it's just a visual change to make the compilers STFU about variable initializations
Diffstat (limited to 'src/tools/map_extractor')
| -rw-r--r-- | src/tools/map_extractor/dbcfile.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/tools/map_extractor/dbcfile.h b/src/tools/map_extractor/dbcfile.h index aef61df7aaa..6862678a73b 100644 --- a/src/tools/map_extractor/dbcfile.h +++ b/src/tools/map_extractor/dbcfile.h @@ -59,8 +59,8 @@ public: } private: Record(DBCFile &file, unsigned char *offset): file(file), offset(offset) {} - unsigned char *offset; DBCFile &file; + unsigned char *offset; friend class DBCFile; friend class DBCFile::Iterator; |
