summaryrefslogtreecommitdiff
path: root/fxjs/xfa/cjx_list.cpp
diff options
context:
space:
mode:
authorTom Sepez <tsepez@chromium.org>2018-06-11 17:08:07 +0000
committerChromium commit bot <commit-bot@chromium.org>2018-06-11 17:08:07 +0000
commit88398a4286dd2bd228d79fb0f3296b9f79cbe4a9 (patch)
treef38d621f227537f064234a6f38e1336763ec1354 /fxjs/xfa/cjx_list.cpp
parent8b4ddebff061b199f14684f17cac8915bade8fb2 (diff)
downloadpdfium-88398a4286dd2bd228d79fb0f3296b9f79cbe4a9.tar.xz
Use spans in CJX_Object.
Avoid explicitly finding array sizes. Change-Id: Id51e3d10ea4db0a6375807a53309ce8d68b3b413 Reviewed-on: https://pdfium-review.googlesource.com/34750 Reviewed-by: dsinclair <dsinclair@chromium.org> Commit-Queue: Tom Sepez <tsepez@chromium.org>
Diffstat (limited to 'fxjs/xfa/cjx_list.cpp')
-rw-r--r--fxjs/xfa/cjx_list.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/fxjs/xfa/cjx_list.cpp b/fxjs/xfa/cjx_list.cpp
index b6ac47ec79..fcac45f58c 100644
--- a/fxjs/xfa/cjx_list.cpp
+++ b/fxjs/xfa/cjx_list.cpp
@@ -22,7 +22,7 @@ const CJX_MethodSpec CJX_List::MethodSpecs[] = {{"append", append_static},
{"remove", remove_static}};
CJX_List::CJX_List(CXFA_List* list) : CJX_Object(list) {
- DefineMethods(MethodSpecs, FX_ArraySize(MethodSpecs));
+ DefineMethods(MethodSpecs);
}
CJX_List::~CJX_List() {}