Bug 145917
| Summary: | [GTK] Fix unused variable warning in generated DerivedSources/WebCore/JSNavigator.cpp | ||
|---|---|---|---|
| Product: | WebKit | Reporter: | Csaba Osztrogonác <ossy> |
| Component: | New Bugs | Assignee: | Nobody <webkit-unassigned> |
| Status: | RESOLVED INVALID | ||
| Severity: | Normal | CC: | bugs-noreply, joepeck |
| Priority: | P2 | ||
| Version: | 528+ (Nightly build) | ||
| Hardware: | Unspecified | ||
| OS: | Unspecified | ||
| See Also: | https://bugs.webkit.org/show_bug.cgi?id=171766 | ||
| Bug Depends on: | |||
| Bug Blocks: | 145121 | ||
Csaba Osztrogonác
DerivedSources/WebCore/JSNavigator.cpp:1104:13: warning: unused variable 'arg0' [-Wunused-variable]
JSValue arg0(exec->argument(0));
^
1 warning generated.
The problem is that arg0 is only used inside ENABLE(VIBRATION) guard.
| Attachments | ||
|---|---|---|
| Add attachment proposed patch, testcase, etc. |
Joseph Pecoraro
Vibration was removed so this is no longer valid.