Commit d3a5633
Fix unused parameters in EventQueueProcessorTest.cpp (#56493)
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.
Changelog: [Internal]
Reviewed By: zeyap
Differential Revision: D1011105521 parent 3fb1fea commit d3a5633
File tree
1 file changed
+2
-2
lines changed- packages/react-native/ReactCommon/react/renderer/core/tests
1 file changed
+2
-2
lines changedLines 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