summaryrefslogtreecommitdiff
path: root/util/env_test.cc
diff options
context:
space:
mode:
authorcostan <costan@google.com>2017-10-04 10:04:21 -0700
committerVictor Costan <pwnall@chromium.org>2017-10-04 10:38:33 -0700
commit542590d2a8eee3838f40b01405baa6d2f6f8c700 (patch)
tree3f7abd44b8edd9738cb08e0bdee16212947d8529 /util/env_test.cc
parent8ae7998aabae4f208d77afcb930dafabade1b28d (diff)
downloadleveldb-542590d2a8eee3838f40b01405baa6d2f6f8c700.tar.gz
leveldb: Include <algorithm> in util/env_test.cc.
CL 170738066 introduced std::min and std::max to env_test.cc. These require the <algorithm> header. ------------- Created by MOE: https://github.com/google/moe MOE_MIGRATED_REVID=171024062
Diffstat (limited to 'util/env_test.cc')
-rw-r--r--util/env_test.cc2
1 files changed, 2 insertions, 0 deletions
diff --git a/util/env_test.cc b/util/env_test.cc
index 8717752..0bf7121 100644
--- a/util/env_test.cc
+++ b/util/env_test.cc
@@ -4,6 +4,8 @@
#include "leveldb/env.h"
+#include <algorithm>
+
#include "port/port.h"
#include "util/testharness.h"
#include "util/testutil.h"