diff options
author | scottmg@chromium.org <scottmg@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2013-10-22 03:43:59 +0000 |
---|---|---|
committer | scottmg@chromium.org <scottmg@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2013-10-22 03:43:59 +0000 |
commit | c7ec171bf29801a3aede36ec404ae38d2a26e25d (patch) | |
tree | 3ac97886036f2ae33c1d57e09f84243166fec6af /crypto | |
parent | 64315b2ac09c63dd3d8da3a5c2d76a335691af05 (diff) | |
download | chromium_src-c7ec171bf29801a3aede36ec404ae38d2a26e25d.zip chromium_src-c7ec171bf29801a3aede36ec404ae38d2a26e25d.tar.gz chromium_src-c7ec171bf29801a3aede36ec404ae38d2a26e25d.tar.bz2 |
Add missing include of algorithm for std::min
Required to compile on VS2013.
TBR=rsleevi@chromium.org
BUG=288948
Review URL: https://codereview.chromium.org/33583004
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@230036 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'crypto')
-rw-r--r-- | crypto/ghash_unittest.cc | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/crypto/ghash_unittest.cc b/crypto/ghash_unittest.cc index 459e177..5dd88ed 100644 --- a/crypto/ghash_unittest.cc +++ b/crypto/ghash_unittest.cc @@ -2,6 +2,8 @@ // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. +#include <algorithm> + #include "crypto/ghash.h" #include "testing/gtest/include/gtest/gtest.h" |