Auto C++ typing introduced where appropriate

This commit is contained in:
2016-10-06 11:39:28 +02:00
parent dacca1409e
commit ba8254c097
16 changed files with 50 additions and 53 deletions

View File

@@ -165,7 +165,7 @@ inline std::ostream& operator <<(_In_ std::ostream& stream, _In_ const ZRCola::c
stream << db.idxRnk;
// Write data count.
std::vector<unsigned __int16>::size_type data_count = db.data.size();
auto data_count = db.data.size();
#if defined(_WIN64) || defined(__x86_64__) || defined(__ppc64__)
// 4G check
if (data_count > 0xffffffff) {