summaryrefslogtreecommitdiffstats
path: root/components
diff options
context:
space:
mode:
authorscottmg@chromium.org <scottmg@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2013-09-13 00:56:27 +0000
committerscottmg@chromium.org <scottmg@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2013-09-13 00:56:27 +0000
commit3e78ca81d2eb2a76a05633abcce26a12df975194 (patch)
tree8031ce05428fd53abdf0dceb1225fdf2084aa6b8 /components
parent94fcaa79d1ff2a108309b109914921a96c291377 (diff)
downloadchromium_src-3e78ca81d2eb2a76a05633abcce26a12df975194.zip
chromium_src-3e78ca81d2eb2a76a05633abcce26a12df975194.tar.gz
chromium_src-3e78ca81d2eb2a76a05633abcce26a12df975194.tar.bz2
add missing #include of <algorithm>, needed on VS2013 for std::min
R=estade@chromium.org BUG=288948 Review URL: https://chromiumcodereview.appspot.com/23597039 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@222942 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'components')
-rw-r--r--components/autofill/core/browser/credit_card.cc1
1 files changed, 1 insertions, 0 deletions
diff --git a/components/autofill/core/browser/credit_card.cc b/components/autofill/core/browser/credit_card.cc
index 103bee9..a3e3044 100644
--- a/components/autofill/core/browser/credit_card.cc
+++ b/components/autofill/core/browser/credit_card.cc
@@ -6,6 +6,7 @@
#include <stddef.h>
+#include <algorithm>
#include <ostream>
#include <string>