Skip to content
Snippets Groups Projects
Commit 530ed0ae authored by Julien Maurer's avatar Julien Maurer
Browse files

Merge branch 'cherry-pick-175c94bf' into '23.0'

LArRawConditions: c++20 gcc13 fix for 23.0

See merge request !64148
parents b9677084 e79fe20a
No related branches found
No related tags found
2 merge requests!641822023-07-06: Daily sweep of 23.0 into main,!64148LArRawConditions: c++20 gcc13 fix for 23.0
......@@ -40,13 +40,6 @@
#include <iostream>
#include <stdint.h>
// Need real class for CaliWave vector:
class LArCaliWave;
class LArCaliWaveVec : public std::vector<LArCaliWave> {
public:
LArCaliWaveVec() {};
bool isEmpty() const;
};
class LArCaliWave : public LArWaveCumul {
......@@ -94,6 +87,12 @@ public:
int m_isPulsed;
};
// Need real class for CaliWave vector:
class LArCaliWaveVec : public std::vector<LArCaliWave> {
public:
LArCaliWaveVec() {};
bool isEmpty() const;
};
// INLINE FUNCTIONS
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment