Skip to content

Commit

Permalink
Fix for C++20
Browse files Browse the repository at this point in the history
std::vector has a constexpr destructor in C++20, which makes forward
declaration not viable anymore.
  • Loading branch information
ktf committed Nov 8, 2023
1 parent ef431cf commit 52de202
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion MCStepLogger/include/MCStepLogger/MCAnalysisManager.h
Original file line number Diff line number Diff line change
Expand Up @@ -31,14 +31,14 @@

#include "MCStepLogger/StepInfo.h"
#include "MCStepLogger/MetaInfo.h"
#include "MCStepLogger/MCAnalysisFileWrapper.h"

namespace o2
{
namespace mcstepanalysis
{

class MCAnalysis;
class MCAnalysisFileWrapper;

class MCAnalysisManager
{
Expand Down

0 comments on commit 52de202

Please sign in to comment.