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:
@@ -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
|
||||
|
||||
|
||||
Reference in New Issue
Block a user