additional changes needed to merge with current master
This commit is contained in:
@ -13,6 +13,7 @@
|
||||
|
||||
#include "utils.h"
|
||||
|
||||
#include "atom.h"
|
||||
#include "comm.h"
|
||||
#include "compute.h"
|
||||
#include "error.h"
|
||||
@ -503,7 +504,7 @@ int utils::expand_args(const char *file, int line, int narg, char **arg,
|
||||
} else if (arg[iarg][0] == 'i') {
|
||||
*ptr1 = '\0';
|
||||
int flag,cols;
|
||||
int icustom = atom->find_custom(&arg[iarg][3],flag,cols);
|
||||
int icustom = lmp->atom->find_custom(&arg[iarg][3],flag,cols);
|
||||
*ptr1 = '[';
|
||||
|
||||
// check for custom per-atom integer array
|
||||
@ -518,7 +519,7 @@ int utils::expand_args(const char *file, int line, int narg, char **arg,
|
||||
} else if (arg[iarg][0] == 'd') {
|
||||
*ptr1 = '\0';
|
||||
int flag,cols;
|
||||
int icustom = atom->find_custom(&arg[iarg][3],flag,cols);
|
||||
int icustom = lmp->atom->find_custom(&arg[iarg][3],flag,cols);
|
||||
*ptr1 = '[';
|
||||
|
||||
// check for custom per-atom floating point array
|
||||
|
||||
Reference in New Issue
Block a user