1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18
|
Description: fix build failure with gcc-15.
Author: Étienne Mollier <emollier@debian.org>
Bug-Debian: https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=1097555
Forwarded: no
Last-Update: 2025-09-25
---
This patch header follows DEP-3: http://dep.debian.net/deps/dep3/
--- pbcopper.orig/include/pbcopper/algorithm/LSHIndex.h
+++ pbcopper/include/pbcopper/algorithm/LSHIndex.h
@@ -229,7 +229,7 @@
for (auto& mut : o.mutexes_) {
res.mutexes_.emplace_back(Utility::Ssize(mut));
}
- res.isBottomKOnly_ = o.isBottomKOnly__;
+ res.isBottomKOnly_ = o.isBottomKOnly_;
return res;
}
LSHIndex Clone() const { return CloneLike(*this); }
|