Skip to content

Commit

Permalink
compile with gcc 14, c++20
Browse files Browse the repository at this point in the history
  • Loading branch information
pinkenburg committed Nov 17, 2024
1 parent c0689b4 commit 7cffdce
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 3 deletions.
3 changes: 2 additions & 1 deletion newbasic/mvtx_decoder/DecodingStat.h
Original file line number Diff line number Diff line change
Expand Up @@ -8,9 +8,10 @@

#define CXX_17 201703L

#include <string>
#include <array>
#include <cstdint>
#include <cstring>
#include <string>

namespace mvtx
{
Expand Down
2 changes: 1 addition & 1 deletion newbasic/oncsSub_idfnalmwpc.cc
Original file line number Diff line number Diff line change
Expand Up @@ -89,7 +89,7 @@ int *oncsSub_idfnalmwpc::decode ( int *nwout)

// cout << " triggers = " << spillinfo.triggercount << endl;

TDCEvent *te;
TDCEvent *te {nullptr};


// we now push, up front, one event structure on the vector
Expand Down
2 changes: 1 addition & 1 deletion newbasic/oncsSub_idfnalmwpcv2.cc
Original file line number Diff line number Diff line change
Expand Up @@ -113,7 +113,7 @@ int *oncsSub_idfnalmwpcv2::decode ( int *nwout)
//cout << __FILE__ << " " << __LINE__ << " spillinfo.Spill_Link_Status_Bits " << spillinfo.Spill_Link_Status_Bits << endl;


TDCEvent *te;
TDCEvent *te {nullptr};


// we now push, up front, one event structure on the vector
Expand Down

0 comments on commit 7cffdce

Please sign in to comment.