diff options
| author | Douglas B. Rumbaugh <doug@douglasrumbaugh.com> | 2024-12-22 15:12:13 -0500 |
|---|---|---|
| committer | Douglas B. Rumbaugh <doug@douglasrumbaugh.com> | 2024-12-22 15:12:13 -0500 |
| commit | ba65c8976f54d4da2467074235a12f5be0bd5ebc (patch) | |
| tree | 955d5995f211d8a7a24f7b106912773db5e3a5ba /include/util | |
| parent | 5617bed5257506d3dfda8537b16f44b3e40f1b42 (diff) | |
| download | dynamic-extension-ba65c8976f54d4da2467074235a12f5be0bd5ebc.tar.gz | |
Continued development
Diffstat (limited to 'include/util')
| -rw-r--r-- | include/util/SortedMerge.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/util/SortedMerge.h b/include/util/SortedMerge.h index b0a3215..c41a7ae 100644 --- a/include/util/SortedMerge.h +++ b/include/util/SortedMerge.h @@ -51,7 +51,7 @@ struct merge_info { */ template <RecordInterface R, ShardInterface S> static std::vector<Cursor<Wrapped<R>>> -build_cursor_vec(std::vector<S *> const &shards, size_t *reccnt, +build_cursor_vec(std::vector<const S *> const &shards, size_t *reccnt, size_t *tscnt) { std::vector<Cursor<Wrapped<R>>> cursors; cursors.reserve(shards.size()); |