summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorcostan <costan@google.com>2018-04-13 16:17:51 -0700
committerVictor Costan <pwnall@chromium.org>2018-04-13 16:21:07 -0700
commit8046a51b21114d3575421bfc78b1d98b1678720a (patch)
tree01b4c84f747a7b021d1336b352ed31b3b8da5448
parenta0008deb679480fd30e845d7e52421af72160c2c (diff)
downloadleveldb-8046a51b21114d3575421bfc78b1d98b1678720a.tar.gz
Add forgotten <limits> header to util/logging.cc.
Commit a0008deb679480fd30e845d7e52421af72160c2c introduced std::numeric_limits usage in logging.cc, but didn't #include <limits> ------------- Created by MOE: https://github.com/google/moe MOE_MIGRATED_REVID=192840190
-rw-r--r--util/logging.cc1
1 files changed, 1 insertions, 0 deletions
diff --git a/util/logging.cc b/util/logging.cc
index 0c2890f..411a303 100644
--- a/util/logging.cc
+++ b/util/logging.cc
@@ -8,6 +8,7 @@
#include <stdarg.h>
#include <stdio.h>
#include <stdlib.h>
+#include <limits>
#include "leveldb/env.h"
#include "leveldb/slice.h"