summaryrefslogtreecommitdiff
path: root/fxjse
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 /fxjse
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 'fxjse')
-rw-r--r--fxjse/context.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/fxjse/context.h b/fxjse/context.h
index 869fbfb1fb..3cc7123f55 100644
--- a/fxjse/context.h
+++ b/fxjse/context.h
@@ -26,7 +26,7 @@ class CFXJSE_Context {
CFXJSE_HostObject* lpGlobalObject = nullptr);
~CFXJSE_Context();
- v8::Isolate* GetRuntime(void) { return m_pIsolate; }
+ v8::Isolate* GetRuntime() { return m_pIsolate; }
std::unique_ptr<CFXJSE_Value> GetGlobalObject();
void EnableCompatibleMode();
FX_BOOL ExecuteScript(const FX_CHAR* szScript,