From: bangerth Date: Tue, 10 Sep 2013 18:18:22 +0000 (+0000) Subject: Add missing fields to memory_consumption(). X-Git-Url: https://gitweb.dealii.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=783d89178ea691088980ad134e1fd2bf093c33b0;p=dealii-svn.git Add missing fields to memory_consumption(). git-svn-id: https://svn.dealii.org/trunk@30667 0785d39b-7218-0410-832d-ea1e28bc413d --- diff --git a/deal.II/source/hp/dof_level.cc b/deal.II/source/hp/dof_level.cc index 8215acd3da..fc11565a33 100644 --- a/deal.II/source/hp/dof_level.cc +++ b/deal.II/source/hp/dof_level.cc @@ -218,7 +218,9 @@ namespace internal { return (MemoryConsumption::memory_consumption (active_fe_indices) + MemoryConsumption::memory_consumption (dof_indices) + - MemoryConsumption::memory_consumption (dof_offsets)); + MemoryConsumption::memory_consumption (dof_offsets) + + MemoryConsumption::memory_consumption (cell_cache_offsets) + + MemoryConsumption::memory_consumption(cell_dof_indices_cache)); }