diff options
author | Treeston <treeston.mmoc@gmail.com> | 2018-01-25 12:39:19 +0100 |
---|---|---|
committer | Treeston <treeston.mmoc@gmail.com> | 2018-01-25 12:39:19 +0100 |
commit | 6c3c200cc52397b4b32ed76e676830e9f1d67d4c (patch) | |
tree | c321072ad1492d227dc4ff88ac5d4516a1ebe3d8 /src/common/DataStores/DBCFileLoader.cpp | |
parent | 6ce078d8e885f61ebdff3eb905e4cf6a2911da90 (diff) |
Misc: assert -> ASSERT
Diffstat (limited to 'src/common/DataStores/DBCFileLoader.cpp')
-rw-r--r-- | src/common/DataStores/DBCFileLoader.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/common/DataStores/DBCFileLoader.cpp b/src/common/DataStores/DBCFileLoader.cpp index 5acc2761a44..b304e4764ae 100644 --- a/src/common/DataStores/DBCFileLoader.cpp +++ b/src/common/DataStores/DBCFileLoader.cpp @@ -119,7 +119,7 @@ DBCFileLoader::~DBCFileLoader() DBCFileLoader::Record DBCFileLoader::getRecord(size_t id) { - assert(data); + ASSERT(data); return Record(*this, data + id * recordSize); } |