summaryrefslogtreecommitdiffstats
path: root/include/util
diff options
context:
space:
mode:
authorDouglas B. Rumbaugh <doug@douglasrumbaugh.com>2024-12-06 13:56:55 -0500
committerDouglas B. Rumbaugh <doug@douglasrumbaugh.com>2024-12-06 13:56:55 -0500
commite2b81a2d311470d503edae93e68e82791f6bb17c (patch)
treeeec2a5eba14be2986af39d3fdd5d651e61f8f4b3 /include/util
parent9fe305c7d28e993e55c55427f377ae7e3251ea4f (diff)
downloaddynamic-extension-e2b81a2d311470d503edae93e68e82791f6bb17c.tar.gz
Warning fixes
Diffstat (limited to 'include/util')
-rw-r--r--include/util/types.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/include/util/types.h b/include/util/types.h
index b8a1343..c225857 100644
--- a/include/util/types.h
+++ b/include/util/types.h
@@ -80,7 +80,7 @@ typedef ssize_t level_index;
typedef struct ReconstructionTask {
std::vector<level_index> sources;
level_index target;
- size_t reccnt;
+ size_t reccnt = 0;
void add_source(level_index source, size_t cnt) {
sources.push_back(source);