diff options
author | Tom Sepez <tsepez@chromium.org> | 2015-03-20 10:55:35 -0700 |
---|---|---|
committer | Tom Sepez <tsepez@chromium.org> | 2015-03-20 10:55:35 -0700 |
commit | f5986cb807b95a4513eb57153a364a98e3ae5732 (patch) | |
tree | 7fc44d43b590689602804214ec5c9da6bcbdaf61 | |
parent | db20582cca8f8d540ec463b1694ee9270d27acac (diff) | |
download | pdfium-f5986cb807b95a4513eb57153a364a98e3ae5732.tar.xz |
Merge to XFA: Fix missing include for std::min
Original Review URL: https://codereview.chromium.org/1026843002
TBR=thestig@chromium.org
Review URL: https://codereview.chromium.org/1025753002
-rw-r--r-- | core/src/fxcodec/codec/fx_codec_jpx_opj.cpp | 1 |
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" |