Skip to content

Commit

Permalink
fix the merge with master
Browse files Browse the repository at this point in the history
  • Loading branch information
pramodk committed Mar 19, 2024
1 parent 0aec16c commit aed536f
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions src/nrniv/nrncore_write/data/cell_group.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -257,8 +257,7 @@ void CellGroup::datumindex_fill(int ith, CellGroup& cg, DatumIndices& di, Memb_l
// what is the size of the nt._vdata portion needed for a single ml->dparam[i]
int vdata_size = 0;
for (int i = 0; i < dsize; ++i) {
int* ds = memb_func[di.type].dparam_semantics;
if (ds[i] == -4 || ds[i] == -6 || ds[i] == -7 || ds[i] == -11 || ds[i] == 0) {
if (dmap[i] == -4 || dmap[i] == -6 || dmap[i] == -7 || dmap[i] == -11 || dmap[i] == 0) {
++vdata_size;
}
}
Expand Down

0 comments on commit aed536f

Please sign in to comment.