Skip to content

Commit

Permalink
Update Execute method in Protocol to use Storage pointer
Browse files Browse the repository at this point in the history
  • Loading branch information
rosahay-silabs committed Dec 16, 2024
1 parent f0d6732 commit 824857f
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/platform/silabs/provision/ProvisionProtocol.h
Original file line number Diff line number Diff line change
Expand Up @@ -37,8 +37,8 @@ class Protocol
/**
* Must hold the header plus complete argument value
*/
virtual ~Protocol() = default;
virtual bool Execute(ByteSpan & request, MutableByteSpan & response) = 0;
virtual ~Protocol() = default;
virtual bool Execute(Storage * store, ByteSpan & request, MutableByteSpan & response) = 0;
};

//------------------------------------------------------------------------------
Expand Down

0 comments on commit 824857f

Please sign in to comment.