Skip to content

Commit

Permalink
Fix format
Browse files Browse the repository at this point in the history
Simon Friedel committed Nov 20, 2023

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature.
1 parent 4ca982c commit bfc46bc
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion tools/fm-editor/tree/FeatureTreeViewModel.h
Original file line number Diff line number Diff line change
@@ -19,7 +19,8 @@ class FeatureTreeViewModel : public QAbstractItemModel {
}
~FeatureTreeViewModel() override {
delete RootItem;
std::destroy(Items.begin(), Items.end()); }
std::destroy(Items.begin(), Items.end());
}

std::vector<std::unique_ptr<FeatureTreeItem>> *getItems();
[[nodiscard]] QVariant data(const QModelIndex &Index,

0 comments on commit bfc46bc

Please sign in to comment.