From ce9014f1d71a9415738ee8c0c314918fa1920e29 Mon Sep 17 00:00:00 2001
From: Wolfgang Bangerth <bangerth@math.tamu.edu>
Date: Tue, 10 Sep 2013 18:18:22 +0000
Subject: [PATCH] Add missing fields to memory_consumption().

git-svn-id: https://svn.dealii.org/trunk@30667 0785d39b-7218-0410-832d-ea1e28bc413d
---
 deal.II/source/hp/dof_level.cc | 4 +++-
 1 file changed, 3 insertions(+), 1 deletion(-)

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));
     }
 
 
-- 
2.39.5