Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 5 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -2,3 +2,8 @@
.build
.qmake.stash
*.qm

# AI
.cursor/
.cursorindexingignore
.specstory/
3 changes: 2 additions & 1 deletion service/diskoperation/blockspecial.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -79,10 +79,11 @@

BlockSpecial::~BlockSpecial()
{
qDebug() << "BlockSpecial object destroyed for device:" << m_name;
// Do not log in destructors of global variables, which can cause crashes
// qDebug() << "BlockSpecial object destroyed for device:" << m_name;
}

void BlockSpecial::clearCache()

Check warning on line 86 in service/diskoperation/blockspecial.cpp

View workflow job for this annotation

GitHub Actions / cppcheck

The function 'clearCache' is never used.
{
qDebug() << "Clearing block device number cache";
mmNumberCache.clear();
Expand Down