Migrate to standard integral types.

The following changes are done via find/replace.
* int8 -> int8_t
* int16 -> int16_t
* int32 -> int32_t
* int64 -> int64_t

The aliases were removed from snappy-stubs-public.h.

PiperOrigin-RevId: 306141557
This commit is contained in:
Victor Costan
2020-04-12 20:03:50 +00:00
parent 14bef66290
commit 231b8be076
9 changed files with 191 additions and 197 deletions

View File

@@ -227,7 +227,7 @@ class CycleTimer {
}
private:
int64 real_time_us_;
int64_t real_time_us_;
#ifdef WIN32
LARGE_INTEGER start_;
#else
@@ -272,7 +272,7 @@ void ResetBenchmarkTiming();
void StartBenchmarkTiming();
void StopBenchmarkTiming();
void SetBenchmarkLabel(const std::string& str);
void SetBenchmarkBytesProcessed(int64 bytes);
void SetBenchmarkBytesProcessed(int64_t bytes);
#ifdef HAVE_LIBZ