Do not try to optimize when there are too few files, it seems to bring more drawbacks than benefits

This commit is contained in:
emeric
2025-07-18 19:29:08 +02:00
parent f64a93b5b6
commit f51ceb933e
20 changed files with 116 additions and 52 deletions
@@ -21,12 +21,12 @@
namespace lms::scanner
{
std::size_t ScanStats::nbFiles() const
std::size_t ScanStats::getTotalFileCount() const
{
return skips + additions + updates + failures;
}
std::size_t ScanStats::nbChanges() const
std::size_t ScanStats::getChangesCount() const
{
return additions + deletions + updates;
}