diff options
author | weili <weili@chromium.org> | 2016-06-20 11:37:05 -0700 |
---|---|---|
committer | Commit bot <commit-bot@chromium.org> | 2016-06-20 11:37:05 -0700 |
commit | bff506d3b5e03891c137d9fe18f65cae112ebf2a (patch) | |
tree | c7e45a164599bc5917d570576d24860d6a59c4e5 /xfa/fxfa/parser/xfa_script_nodehelper.h | |
parent | 338a6b75994eb148d429b7abccfffaf7ae9f9b55 (diff) | |
download | pdfium-bff506d3b5e03891c137d9fe18f65cae112ebf2a.tar.xz |
Change func(void) to func()
Since PDFium is compiled as C++ code, the void keyword is not needed.
BUG=pdfium:519
Review-Url: https://codereview.chromium.org/2084603003
Diffstat (limited to 'xfa/fxfa/parser/xfa_script_nodehelper.h')
-rw-r--r-- | xfa/fxfa/parser/xfa_script_nodehelper.h | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/xfa/fxfa/parser/xfa_script_nodehelper.h b/xfa/fxfa/parser/xfa_script_nodehelper.h index e90db585fc..76d1302818 100644 --- a/xfa/fxfa/parser/xfa_script_nodehelper.h +++ b/xfa/fxfa/parser/xfa_script_nodehelper.h @@ -19,8 +19,9 @@ enum XFA_LOGIC_TYPE { class CXFA_NodeHelper { public: - CXFA_NodeHelper(void); - ~CXFA_NodeHelper(void); + CXFA_NodeHelper(); + ~CXFA_NodeHelper(); + CXFA_Node* XFA_ResolveNodes_GetOneChild(CXFA_Node* parent, const FX_WCHAR* pwsName, FX_BOOL bIsClassName = FALSE); |