summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTom Sepez <tsepez@chromium.org>2015-03-20 10:53:02 -0700
committerTom Sepez <tsepez@chromium.org>2015-03-20 10:53:02 -0700
commitae702b094ba8fda303b4c7e6ddafb3ebae6db7b6 (patch)
tree3c502f21b9cc847c27040bbaae1762605dba5cf3
parentfa7cf56709c8d8150a3807bfd496c165894425e7 (diff)
downloadpdfium-ae702b094ba8fda303b4c7e6ddafb3ebae6db7b6.tar.xz
Fix missing include for std::min
Build broken on trybot at http://build.chromium.org/p/tryserver.chromium.win/builders/win8_chromium_rel/builds/66012/steps/compile%20%28with%20patch%29/logs/stdio R=thestig@chromium.org TBR=thestig@chromium.org Review URL: https://codereview.chromium.org/1026843002
-rw-r--r--core/src/fxcodec/codec/fx_codec_jpx_opj.cpp1
1 files changed, 1 insertions, 0 deletions
diff --git a/core/src/fxcodec/codec/fx_codec_jpx_opj.cpp b/core/src/fxcodec/codec/fx_codec_jpx_opj.cpp
index 0ba6830944..d98cb03f09 100644
--- a/core/src/fxcodec/codec/fx_codec_jpx_opj.cpp
+++ b/core/src/fxcodec/codec/fx_codec_jpx_opj.cpp
@@ -4,6 +4,7 @@
// Original code copyright 2014 Foxit Software Inc. http://www.foxitsoftware.com
+#include <algorithm>
#include <limits>
#include "../../../include/fxcodec/fx_codec.h"