Is there a way to get heob to ignore QT memory leaks? It is quite difficult to find my memory leaks in amongst all the QT leaks. The following code generates 151 memory leaks with Qt 6.1.0 MinGW 64-bit.

Qt Code:
  1. #ifndef MAINWINDOW_H
  2. #define MAINWINDOW_H
  3.  
  4. #include <QMainWindow>
  5.  
  6. class MainWindow : public QMainWindow
  7. {
  8. Q_OBJECT
  9.  
  10. public:
  11. MainWindow(QWidget *parent = nullptr): QMainWindow(parent) {}
  12. ~MainWindow() {}
  13. };
  14. #endif // MAINWINDOW_H
  15.  
  16. #include "mainwindow.h"
  17.  
  18. #include <QApplication>
To copy to clipboard, switch view to plain text mode 

Qt Code:
  1. int main(int argc, char *argv[])
  2. {
  3. QApplication a(argc, argv);
  4. MainWindow w;
  5. w.show();
  6. return a.exec();
  7. }
To copy to clipboard, switch view to plain text mode