consistently return "memory_usage" as double.
This commit is contained in:
@ -2091,9 +2091,9 @@ int DumpCustom::modify_param(int narg, char **arg)
|
||||
return # of bytes of allocated memory in buf, choose, variable arrays
|
||||
------------------------------------------------------------------------- */
|
||||
|
||||
bigint DumpCustom::memory_usage()
|
||||
double DumpCustom::memory_usage()
|
||||
{
|
||||
bigint bytes = Dump::memory_usage();
|
||||
double bytes = Dump::memory_usage();
|
||||
bytes += memory->usage(choose,maxlocal);
|
||||
bytes += memory->usage(dchoose,maxlocal);
|
||||
bytes += memory->usage(clist,maxlocal);
|
||||
|
||||
Reference in New Issue
Block a user