remove unused parameter and silence compiler warnings

This commit is contained in:
Axel Kohlmeyer
2024-01-18 22:55:02 -05:00
parent 991663feff
commit 48e83b2298
8 changed files with 14 additions and 14 deletions

View File

@ -114,10 +114,10 @@ void sph_taitwater_gpu_compute(const int ago, const int inum_full, const int nal
int **firstneigh, const bool eflag, const bool vflag,
const bool eatom, const bool vatom, int &host_start,
const double cpu_time, bool &success, tagint *host_tag,
double **host_v, const int nlocal) {
double **host_v) {
SPHTaitwaterMF.compute(ago, inum_full, nall, host_x, host_type, ilist, numj,
firstneigh, eflag, vflag, eatom, vatom, host_start, cpu_time, success,
host_tag, host_v, nlocal);
host_tag, host_v);
}
void sph_taitwater_gpu_get_extra_data(double *host_rho) {