Skip to content
Snippets Groups Projects
Commit 7c3768f4 authored by Peterson, Peter's avatar Peterson, Peter
Browse files

Fix clang-tidy warning

parent 0bd5a214
No related branches found
No related tags found
No related merge requests found
......@@ -15,8 +15,8 @@ struct MantidMatrixTabExtension {
MantidMatrixModel::Type type)
: label(label), tableView(tableView), model(model), type(type) {}
MantidMatrixTabExtension()
: label(""), tableView(), model(NULL), type(MantidMatrixModel::Type::DX) {
}
: label(""), tableView(), model(nullptr),
type(MantidMatrixModel::Type::DX) {}
QString label;
std::unique_ptr<QTableView> tableView;
QPointer<MantidMatrixModel> model;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment