File: gcc-15

package info (click to toggle)
pbcopper 2.3.0%2Bdfsg-4
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 10,996 kB
  • sloc: ansic: 164,688; cpp: 53,414; sh: 184; makefile: 22
file content (18 lines) | stat: -rw-r--r-- 690 bytes parent folder | download
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); }