Skip to content

Commit

Permalink
FIX Merge EntID logic into EntityId class (to remove EntID in a soon …
Browse files Browse the repository at this point in the history
…next commit)
  • Loading branch information
fgalan committed Sep 4, 2024
1 parent a7e594c commit 97fc17c
Show file tree
Hide file tree
Showing 51 changed files with 528 additions and 418 deletions.
8 changes: 3 additions & 5 deletions src/lib/apiTypesV2/Entities.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -135,11 +135,9 @@ void Entities::fill(const QueryContextResponse& qcrs, OrionError* oeP)
{
Entity* newP = new Entity();

newP->id = eP->id;
newP->type = eP->type;
newP->isPattern = eP->isPattern;
newP->creDate = eP->creDate;
newP->modDate = eP->modDate;
newP->entityId = eP->entityId;
newP->creDate = eP->creDate;
newP->modDate = eP->modDate;

newP->attributeVector.fill(eP->attributeVector);
vec.push_back(newP);
Expand Down
Loading

0 comments on commit 97fc17c

Please sign in to comment.