Skip to content

Commit eabc48a

Browse files
committed
Updated Pipe
1 parent 2caf6ca commit eabc48a

3 files changed

Lines changed: 4 additions & 4 deletions

File tree

Libs/AST/Src/AST/Utils/TypeUtils.cpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -78,7 +78,7 @@ namespace rift::ast
7878
}
7979
}
8080
}
81-
p::RmId(access.GetContext(), typeIds, p::RmIdFlags::RemoveChildren);
81+
p::RmId(access.GetContext(), typeIds);
8282
}
8383

8484
void SerializeType(Tree& ast, Id id, String& data)
@@ -443,7 +443,7 @@ namespace rift::ast
443443
void RemoveNodes(const RemoveAccess& access, TView<Id> ids)
444444
{
445445
ScopedChange(access, ids);
446-
p::RmId(access.GetContext(), ids, p::RmIdFlags::RemoveChildren);
446+
p::RmId(access.GetContext(), ids);
447447
}
448448

449449
bool CopyExpressionType(

Libs/Editor/Src/Utils/ElementsPanel.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -276,7 +276,7 @@ namespace rift::editor
276276
// If pin has not been marked for removal, destroy the entity
277277
if (!removedPin)
278278
{
279-
p::RmId(ast, editor.pendingDeletePropertyId, p::RmIdFlags::RemoveChildren);
279+
p::RmId(ast, editor.pendingDeletePropertyId);
280280
editor.pendingDeletePropertyId = ast::NoId;
281281
}
282282
}

0 commit comments

Comments
 (0)