Commit 25f2621
Fix unused parameters in EventQueueProcessorTest.cpp
Summary:
Fixed clang-diagnostic-unused-parameter warnings in EventQueueProcessorTest.cpp by removing unused parameter names from lambda functions.
Changes:
- Line 51: Removed parameter name 'runtime' from dummyEventPipeConclusion lambda
- Line 52: Removed parameter name 'stateUpdate' from dummyStatePipe lambda
This is a standard C++ practice for handling unused parameters - keeping the type for API compatibility while removing the name to silence the warning.
Differential Revision: D1011105521 parent 56129fe commit 25f2621
1 file changed
Lines changed: 2 additions & 2 deletions
Lines changed: 2 additions & 2 deletions
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
48 | 48 | | |
49 | 49 | | |
50 | 50 | | |
51 | | - | |
52 | | - | |
| 51 | + | |
| 52 | + | |
53 | 53 | | |
54 | 54 | | |
55 | 55 | | |
| |||
0 commit comments