Commit acb85ce
Fix unused parameters in EventQueueProcessorTest.cpp (#56493)
Summary:
Pull Request resolved: #56493
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.
Changelog: [Internal]
Reviewed By: zeyap
Differential Revision: D101110552
fbshipit-source-id: 3391080dcaa4c865177e164869b9732952cde9061 parent 786ebf0 commit acb85ce
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