Skip to content

Commit

Permalink
Fixed build
Browse files Browse the repository at this point in the history
  • Loading branch information
Gazizonoki committed Aug 30, 2024
1 parent 44e1567 commit 85f19a1
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions src/library/operation_id/operation_id.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -152,6 +152,10 @@ const TOperationId::TDataList& TOperationId::GetData() const {
return Data;
}

TOperationId::TDataList& TOperationId::GetMutableData() {
return Data;
}

const std::vector<const std::string*>& TOperationId::GetValue(const std::string &key) const {
auto it = Index.find(key);
if (it != Index.end()) {
Expand Down

0 comments on commit 85f19a1

Please sign in to comment.