aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorConley Owens <cco3@android.com>2011-11-09 14:05:49 -0800
committerConley Owens <cco3@android.com>2011-11-09 14:05:49 -0800
commit90b78b1e64e4d36665f8581fa5e889f42971e031 (patch)
tree287abe98865f9aa0aa40449ac94e2d8a089a60a3
parenta2e215abe628d95138749a4813575f8882c1efd0 (diff)
downloadoprofile-90b78b1e64e4d36665f8581fa5e889f42971e031.tar.gz
Remove mutable declaration of reference member
Mutable on reference members is meaningless. gcc>=4.6 does not allow it. Change-Id: I87c10cd7b5d6a15f46ca20465882e7a940e850bf
-rw-r--r--libpp/format_output.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/libpp/format_output.h b/libpp/format_output.h
index b6c4592..8e527d5 100644
--- a/libpp/format_output.h
+++ b/libpp/format_output.h
@@ -91,7 +91,7 @@ protected:
symbol_entry const & symbol;
sample_entry const & sample;
size_t pclass;
- mutable counts_t & counts;
+ counts_t & counts;
extra_images const & extra;
double diff;
};