summaryrefslogtreecommitdiffstats
path: root/chromium/third_party/pdfium/core/fpdfapi/parser/cpdf_object.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'chromium/third_party/pdfium/core/fpdfapi/parser/cpdf_object.cpp')
-rw-r--r--chromium/third_party/pdfium/core/fpdfapi/parser/cpdf_object.cpp6
1 files changed, 5 insertions, 1 deletions
diff --git a/chromium/third_party/pdfium/core/fpdfapi/parser/cpdf_object.cpp b/chromium/third_party/pdfium/core/fpdfapi/parser/cpdf_object.cpp
index 67632a040c5..8dce9bd23da 100644
--- a/chromium/third_party/pdfium/core/fpdfapi/parser/cpdf_object.cpp
+++ b/chromium/third_party/pdfium/core/fpdfapi/parser/cpdf_object.cpp
@@ -55,7 +55,11 @@ int CPDF_Object::GetInteger() const {
return 0;
}
-CPDF_Dictionary* CPDF_Object::GetDict() const {
+CPDF_Dictionary* CPDF_Object::GetDict() {
+ return nullptr;
+}
+
+const CPDF_Dictionary* CPDF_Object::GetDict() const {
return nullptr;
}