Quellcode durchsuchen

Replace SIZE_MAX with std::numeric_limits.

helpers/memenv/memenv.cc used SIZE_MAX without including <stdint.h>.
Since we're fixing this problem, replace SIZE_MAX with
std::numeric_limits<size_t>::max(), which is clearer.

Fixes https://github.com/google/leveldb/issues/562

-------------
Created by MOE: https://github.com/google/moe
MOE_MIGRATED_REVID=189821707
main
costan vor 6 Jahren
committed von Victor Costan
Ursprung
Commit
50fbc87e8c
1 geänderte Dateien mit 2 neuen und 1 gelöschten Zeilen
  1. +2
    -1
      helpers/memenv/memenv.cc

+ 2
- 1
helpers/memenv/memenv.cc Datei anzeigen

@ -6,6 +6,7 @@
#include <string.h>
#include <limits>
#include <map>
#include <string>
#include <vector>
@ -65,7 +66,7 @@ class FileState {
return Status::OK();
}
assert(offset / kBlockSize <= SIZE_MAX);
assert(offset / kBlockSize <= std::numeric_limits<size_t>::max());
size_t block = static_cast<size_t>(offset / kBlockSize);
size_t block_offset = offset % kBlockSize;

Laden…
Abbrechen
Speichern