consistently return "memory_usage" as double.

This commit is contained in:
Axel Kohlmeyer
2020-09-14 21:38:52 -04:00
parent 101d39142e
commit 0183e999c9
81 changed files with 131 additions and 131 deletions

View File

@ -338,7 +338,7 @@ void FixNumDiff::reallocate()
double FixNumDiff::memory_usage()
{
bigint bytes = 0.0;
double bytes = 0.0;
bytes += 3 * maxatom*3 * sizeof(double);
return bytes;
}