Skip to content

Commit

Permalink
Fix semantic conflict on SessionManager
Browse files Browse the repository at this point in the history
  • Loading branch information
tcarmelveilleux committed Jun 24, 2022
1 parent 54376dd commit d8864e3
Showing 1 changed file with 1 addition and 16 deletions.
17 changes: 1 addition & 16 deletions src/transport/SessionManager.h
Original file line number Diff line number Diff line change
Expand Up @@ -247,26 +247,11 @@ class DLL_EXPORT SessionManager : public TransportMgrDelegate, public FabricTabl
CHIP_ERROR ForEachSessionHandle(void * context, SessionHandleCallback callback);

//// FabricTable::Delegate Implementation ////
void OnFabricDeletedFromStorage(FabricTable & fabricTable, FabricIndex fabricIndex) override
void OnFabricRemoved(const FabricTable & fabricTable, FabricIndex fabricIndex) override
{
(void) fabricTable;
this->FabricRemoved(fabricIndex);
}
void OnFabricRetrievedFromStorage(FabricTable & fabricTable, FabricIndex fabricIndex) override
{
(void) fabricTable;
(void) fabricIndex;
}
void OnFabricPersistedToStorage(FabricTable & fabricTable, FabricIndex fabricIndex) override
{
(void) fabricTable;
(void) fabricIndex;
}
void OnFabricNOCUpdated(chip::FabricTable & fabricTable, chip::FabricIndex fabricIndex) override
{
(void) fabricTable;
(void) fabricIndex;
}

private:
/**
Expand Down

0 comments on commit d8864e3

Please sign in to comment.