diff options
author | Lei Zhang <thestig@chromium.org> | 2018-10-09 23:32:10 +0000 |
---|---|---|
committer | Chromium commit bot <commit-bot@chromium.org> | 2018-10-09 23:32:10 +0000 |
commit | 76ec926e732926e84de9c8b4ef0018464172e73b (patch) | |
tree | fb59a9fb517b2d8a326b33cbc834202f903a86f6 /core/fpdfapi/parser | |
parent | 46ab5abf23910983663b3daeb6dc2f6a98ee24a8 (diff) | |
download | pdfium-76ec926e732926e84de9c8b4ef0018464172e73b.tar.xz |
Remove default argument to CPDF_Dictionary::GetBooleanFor().chromium/3576
Change-Id: I5b64bc3af90b9557d8e0c456675afe60e463927d
Reviewed-on: https://pdfium-review.googlesource.com/c/43612
Commit-Queue: Lei Zhang <thestig@chromium.org>
Reviewed-by: Tom Sepez <tsepez@chromium.org>
Diffstat (limited to 'core/fpdfapi/parser')
-rw-r--r-- | core/fpdfapi/parser/cpdf_dictionary.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/core/fpdfapi/parser/cpdf_dictionary.h b/core/fpdfapi/parser/cpdf_dictionary.h index 7b839975a1..a0e678c6fd 100644 --- a/core/fpdfapi/parser/cpdf_dictionary.h +++ b/core/fpdfapi/parser/cpdf_dictionary.h @@ -52,7 +52,7 @@ class CPDF_Dictionary final : public CPDF_Object { WideString GetUnicodeTextFor(const ByteString& key) const; int GetIntegerFor(const ByteString& key) const; int GetIntegerFor(const ByteString& key, int default_int) const; - bool GetBooleanFor(const ByteString& key, bool bDefault = false) const; + bool GetBooleanFor(const ByteString& key, bool bDefault) const; float GetNumberFor(const ByteString& key) const; const CPDF_Dictionary* GetDictFor(const ByteString& key) const; CPDF_Dictionary* GetDictFor(const ByteString& key); |