We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 65bd000 commit 46b781dCopy full SHA for 46b781d
src/Series.cpp
@@ -2807,9 +2807,10 @@ void Series::flushStep(bool doFlush)
2807
wAttr.changesOverSteps =
2808
Parameter<Operation::WRITE_ATT>::ChangesOverSteps::Yes;
2809
wAttr.name = "snapshot";
2810
- wAttr.setResource(std::vector<unsigned long long>{
2811
- series.m_currentlyActiveIterations.begin(),
2812
- series.m_currentlyActiveIterations.end()});
+ wAttr.setResource(
+ std::vector<unsigned long long>{
+ series.m_currentlyActiveIterations.begin(),
2813
+ series.m_currentlyActiveIterations.end()});
2814
series.m_currentlyActiveIterations.clear();
2815
wAttr.dtype = Datatype::VEC_ULONGLONG;
2816
IOHandler()->enqueue(IOTask(&series.iterations, wAttr));
0 commit comments