fix style related issues

This commit is contained in:
iafoss 2020-03-20 14:45:26 -04:00
parent a8fc2005d4
commit c793db66d2
2 changed files with 2 additions and 2 deletions

View File

@ -139,7 +139,7 @@ MESONTList::MESONTList(const Atom* atom, const NeighList* nblist, double rc2){
for (int m = 0; m < 2; m++) {
nb_list_i[m].resize(0);
int idx = segments[i][m];
if (idx >= nlocal) continue;
if (idx >= nlocal) continue;
int nnb = nblist->numneigh[idx];
for (int j = 0; j < nnb; j++) {
int jdx = nblist->firstneigh[idx][j];

View File

@ -68,7 +68,7 @@ private:
//=============================================================================
inline const std::vector<std::vector<array2003<int, 2> > > &
inline const std::vector<std::vector<array2003<int, 2> > > &
MESONTList::get_nbs() const {
return nb_chains;
}