summaryrefslogtreecommitdiff
path: root/xfa/fxfa/parser/xfa_script_nodehelper.h
diff options
context:
space:
mode:
authorweili <weili@chromium.org>2016-06-20 11:37:05 -0700
committerCommit bot <commit-bot@chromium.org>2016-06-20 11:37:05 -0700
commitbff506d3b5e03891c137d9fe18f65cae112ebf2a (patch)
treec7e45a164599bc5917d570576d24860d6a59c4e5 /xfa/fxfa/parser/xfa_script_nodehelper.h
parent338a6b75994eb148d429b7abccfffaf7ae9f9b55 (diff)
downloadpdfium-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.h5
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);