File: gcc-15.patch

package info (click to toggle)
fastjet 3.4.0%2Bdfsg-2
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 9,552 kB
  • sloc: cpp: 78,628; python: 6,112; sh: 1,038; fortran: 673; makefile: 636; ansic: 161
file content (16 lines) | stat: -rw-r--r-- 678 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
Description: Fix FTBFS with GCC 15
Author: Adrian Bunk <bunk@debian.org>
Bug-Debian: https://bugs.debian.org/1096611
Origin: upstream, 3.5.1

--- fastjet-3.4.0+dfsg.orig/plugins/D0RunIICone/ProtoJet.hpp
+++ fastjet-3.4.0+dfsg/plugins/D0RunIICone/ProtoJet.hpp
@@ -195,7 +195,7 @@ void ProtoJet<Item>::NowStable() {
 
 template<class Item>
 void ProtoJet<Item>::print(std::ostream& os) const {
-  os<<"y phi Et = ("<<_y<<", "<<_phi<<", "<<this->_Et<<")"<<std::endl;
+  os<<"y phi pT = ("<<_y<<", "<<_phi<<", "<<this->_pT<<")"<<std::endl;
   os<< " members= " << std::endl;
   typename std::list<const Item*>::const_iterator i;
   for(i = _LItems.begin(); i != _LItems.end(); ++i)