diff options
author | Victor Costan <costan@google.com> | 2020-04-29 19:59:39 +0000 |
---|---|---|
committer | Victor Costan <costan@google.com> | 2020-04-29 20:51:13 +0000 |
commit | 3f934e3705444a3df80b128ddefc4cf440441ffe (patch) | |
tree | 7f9003632579b80fb7ba535ecd2abbfc911502d0 /include/leveldb/cache.h | |
parent | 23d67e7c1f4396919bd0c73c0eced13a0dac37f3 (diff) | |
download | leveldb-3f934e3705444a3df80b128ddefc4cf440441ffe.tar.gz |
Switch from C headers to C++ headers.
This CL makes the following substitutions.
* assert.h -> cassert
* math.h -> cmath
* stdarg.h -> cstdarg
* stddef.h -> cstddef
* stdint.h -> cstdint
* stdio.h -> cstdio
* stdlib.h -> cstdlib
* string.h -> cstring
PiperOrigin-RevId: 309080151
Diffstat (limited to 'include/leveldb/cache.h')
-rw-r--r-- | include/leveldb/cache.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/leveldb/cache.h b/include/leveldb/cache.h index 7d1a221..98c95ac 100644 --- a/include/leveldb/cache.h +++ b/include/leveldb/cache.h @@ -18,7 +18,7 @@ #ifndef STORAGE_LEVELDB_INCLUDE_CACHE_H_ #define STORAGE_LEVELDB_INCLUDE_CACHE_H_ -#include <stdint.h> +#include <cstdint> #include "leveldb/export.h" #include "leveldb/slice.h" |