Skip to content

Commit

Permalink
Fix format
Browse files Browse the repository at this point in the history
  • Loading branch information
Simon Friedel committed Nov 20, 2023
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
Expand Up @@ -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,
Expand Down

0 comments on commit bfc46bc

Please sign in to comment.