Skip to content

Commit 97f3fe2

Browse files
committed
Fix CI
1 parent f569d8d commit 97f3fe2

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

src/app/CommandHandler.h

+1-1
Original file line numberDiff line numberDiff line change
@@ -161,7 +161,7 @@ class CommandHandler
161161
// add new parameters without there needing to be an ever increasing parameter list with defaults.
162162
struct InvokeResponseParameters
163163
{
164-
InvokeResponseParameters(ConcreteCommandPath aRequestCommandPath) : mRequestCommandPath(aRequestCommandPath) {}
164+
InvokeResponseParameters(const ConcreteCommandPath & aRequestCommandPath) : mRequestCommandPath(aRequestCommandPath) {}
165165

166166
InvokeResponseParameters & SetStartOrEndDataStruct(bool aStartOrEndDataStruct)
167167
{

src/app/CommandResponderInterface.h

+1-1
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ namespace app {
2929
* Provides information about the associated exchange context.
3030
*
3131
* Design Rationale: This interface enhances unit testability and allows applications to
32-
* customize CommandResponder behavior with stubs.
32+
* customize CommandResponder behavior. For example, it can stub out sending a response.
3333
*/
3434
class CommandResponderInterface
3535
{

0 commit comments

Comments
 (0)