Commit aa5a78c
Fix unused parameter warnings in TimerManager (#56516)
Summary:
Pull Request resolved: #56516
Fixed clang-diagnostic-unused-parameter warnings in TimerManager.cpp by commenting out the unused 'runtime' parameter names in two functions:
- deleteTimer() at line 135
- deleteRecurringTimer() at line 152-153
Both functions accept a jsi::Runtime& parameter for API compatibility but don't use it internally. The fix maintains the function signatures while suppressing the warnings by commenting out the parameter names.
Changelog: [Internal]
Reviewed By: zeyap
Differential Revision: D101108602
fbshipit-source-id: 95554385c6d36e724fdc1de4a3b20e1e1014a39c1 parent acb85ce commit aa5a78c
1 file changed
Lines changed: 4 additions & 2 deletions
Lines changed: 4 additions & 2 deletions
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
132 | 132 | | |
133 | 133 | | |
134 | 134 | | |
135 | | - | |
| 135 | + | |
| 136 | + | |
| 137 | + | |
136 | 138 | | |
137 | 139 | | |
138 | 140 | | |
| |||
150 | 152 | | |
151 | 153 | | |
152 | 154 | | |
153 | | - | |
| 155 | + | |
154 | 156 | | |
155 | 157 | | |
156 | 158 | | |
| |||
0 commit comments