Skip to content
Snippets Groups Projects
Verified Commit 7b2295ab authored by Maik Nijhuis's avatar Maik Nijhuis
Browse files

Fix undefined variable in Sagecal assertion

parent 7b0fa603
No related branches found
No related tags found
1 merge request!1049Fix undefined variable in Sagecal assertion
Pipeline #51937 passed
......@@ -1010,7 +1010,7 @@ void SagecalPredict::loadData(std::unique_ptr<dp3::base::DPBuffer>& buffer) {
const size_t nCr = info().ncorr();
assert(iodata_.n_baselines >= nBl);
assert(iodata_.n_stations == nSt);
assert(iodata_.n_stations == getInfo().nantenna());
assert(iodata_.n_channels == nCh);
assert(4 == nCr);
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment