summaryrefslogtreecommitdiff
path: root/Userland/DevTools/Profiler/ProfileModel.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'Userland/DevTools/Profiler/ProfileModel.cpp')
-rw-r--r--Userland/DevTools/Profiler/ProfileModel.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/Userland/DevTools/Profiler/ProfileModel.cpp b/Userland/DevTools/Profiler/ProfileModel.cpp
index caf1819446..d9798069f1 100644
--- a/Userland/DevTools/Profiler/ProfileModel.cpp
+++ b/Userland/DevTools/Profiler/ProfileModel.cpp
@@ -67,7 +67,7 @@ GUI::ModelIndex ProfileModel::parent_index(const GUI::ModelIndex& index) const
return create_index(row, index.column(), node.parent());
}
}
- ASSERT_NOT_REACHED();
+ VERIFY_NOT_REACHED();
return {};
}
@@ -76,7 +76,7 @@ GUI::ModelIndex ProfileModel::parent_index(const GUI::ModelIndex& index) const
return create_index(row, index.column(), node.parent());
}
- ASSERT_NOT_REACHED();
+ VERIFY_NOT_REACHED();
return {};
}
@@ -103,7 +103,7 @@ String ProfileModel::column_name(int column) const
case Column::StackFrame:
return "Stack Frame";
default:
- ASSERT_NOT_REACHED();
+ VERIFY_NOT_REACHED();
return {};
}
}