diff options
author | Tom Sepez <tsepez@chromium.org> | 2015-03-16 14:51:35 -0700 |
---|---|---|
committer | Tom Sepez <tsepez@chromium.org> | 2015-03-16 14:51:35 -0700 |
commit | a7865e9c188242c2fc66d993ee4868decf214840 (patch) | |
tree | ac02475ab72490f3ffaea8811519a5b753867ec1 /samples/image_diff.cc | |
parent | 5a0e504d53195892458d819e52c62bea0c710bd5 (diff) | |
download | pdfium-a7865e9c188242c2fc66d993ee4868decf214840.tar.xz |
Speculative fix for breakage in pdfum DEPS roll
Speculative because we still don't have pdfium buildbots for mac/win
on the pdfium waterfall. Nonetheless, the two build errors reported
in https://codereview.chromium.org/989213003/ seem to be a default
statement in a switch fully covering all of an enum constant, and
the use of <cstdint> instead of <stdint.h> on mac.
R=thestig@chromium.org
Review URL: https://codereview.chromium.org/1011803003
Diffstat (limited to 'samples/image_diff.cc')
-rw-r--r-- | samples/image_diff.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/samples/image_diff.cc b/samples/image_diff.cc index 3f82b66527..c7560e1aa1 100644 --- a/samples/image_diff.cc +++ b/samples/image_diff.cc @@ -9,11 +9,11 @@ // what the run-webkit-tests script expects. #include <assert.h> +#include <stdint.h> #include <stdio.h> #include <string.h> #include <algorithm> -#include <cstdint> #include <iostream> #include <map> #include <string> |