summaryrefslogtreecommitdiff
path: root/src/database/include/file_gatherer.hpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/database/include/file_gatherer.hpp')
-rw-r--r--src/database/include/file_gatherer.hpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/database/include/file_gatherer.hpp b/src/database/include/file_gatherer.hpp
index 7cf00b41..5df5a61b 100644
--- a/src/database/include/file_gatherer.hpp
+++ b/src/database/include/file_gatherer.hpp
@@ -45,7 +45,7 @@ auto FindFiles(const std::string& root, Callback cb) -> void {
to_explore.push_back(full_path.str());
} else {
// This is a file! Let the callback know about it.
- //std::invoke(cb, full_path.str(), info);
+ // std::invoke(cb, full_path.str(), info);
std::invoke(cb, full_path.str());
}
}