1
1
mirror of http://git.sesse.net/plocate synced 2025-10-05 23:42:49 +02:00

clang-format.

This commit is contained in:
Steinar H. Gunderson
2020-10-17 09:55:45 +02:00
parent 5905e207c8
commit 00f2a108e2
2 changed files with 2 additions and 2 deletions

View File

@@ -501,7 +501,7 @@ void do_search_file(const vector<Needle> &needles, const char *filename)
// work for fairly unclear gain.)
uint64_t matched = scan_all_docids(needles, fd, corpus);
dprintf("Done in %.1f ms, found %" PRId64 " matches.\n",
1e3 * duration<float>(steady_clock::now() - start).count(), matched);
1e3 * duration<float>(steady_clock::now() - start).count(), matched);
if (only_count) {
printf("%" PRId64 "\n", matched);
}

View File

@@ -4,8 +4,8 @@
#include "options.h"
#include <assert.h>
#include <stdint.h>
#include <queue>
#include <stdint.h>
#include <string>
class ResultReceiver {