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
This commit is contained in:
costan 2017-10-04 10:04:21 -07:00 committed by Victor Costan
parent 8ae7998aab
commit 542590d2a8

View File

@ -4,6 +4,8 @@
#include "leveldb/env.h" #include "leveldb/env.h"
#include <algorithm>
#include "port/port.h" #include "port/port.h"
#include "util/testharness.h" #include "util/testharness.h"
#include "util/testutil.h" #include "util/testutil.h"