mu-query: cleanups

Cleanup the query running and handling the results.

- in threading, use stable_sort
- remove dead code
- fix indentation in a few places
- don't need Option in various run_... in mu-query.cc
This commit is contained in:
Dirk-Jan C. Binnema
2026-07-24 21:16:06 +03:00
committed by Seth Ladygo
parent 1e1311fc39
commit 1b42ad6099
6 changed files with 102 additions and 117 deletions

View File

@ -1,5 +1,5 @@
/*
** Copyright (C) 2008-2024 Dirk-Jan C. Binnema <djcb@djcbsoftware.nl>
** Copyright (C) 2008-2026 Dirk-Jan C. Binnema <djcb@djcbsoftware.nl>
**
** This program is free software; you can redistribute it and/or modify
** it under the terms of the GNU General Public License as published by
@ -17,8 +17,8 @@
**
*/
#ifndef __MU_QUERY_HH__
#define __MU_QUERY_HH__
#ifndef MU_QUERY_HH__
#define MU_QUERY_HH__
#include <string>
#include <memory>
@ -91,4 +91,4 @@ private:
};
} // namespace Mu
#endif /*__MU_QUERY_HH__*/
#endif /*MU_QUERY_HH__*/