summaryrefslogtreecommitdiff
path: root/db/log_reader.cc
diff options
context:
space:
mode:
authorVictor Costan <costan@google.com>2020-04-29 19:59:39 +0000
committerVictor Costan <costan@google.com>2020-04-29 20:51:13 +0000
commit3f934e3705444a3df80b128ddefc4cf440441ffe (patch)
tree7f9003632579b80fb7ba535ecd2abbfc911502d0 /db/log_reader.cc
parent23d67e7c1f4396919bd0c73c0eced13a0dac37f3 (diff)
downloadleveldb-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 'db/log_reader.cc')
-rw-r--r--db/log_reader.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/db/log_reader.cc b/db/log_reader.cc
index b770fee..dcd4b75 100644
--- a/db/log_reader.cc
+++ b/db/log_reader.cc
@@ -4,7 +4,7 @@
#include "db/log_reader.h"
-#include <stdio.h>
+#include <cstdio>
#include "leveldb/env.h"
#include "util/coding.h"