Skip to content
This repository has been archived by the owner on Aug 3, 2022. It is now read-only.

Commit

Permalink
Remove mutable declaration of reference member
Browse files Browse the repository at this point in the history
Mutable on reference members is meaningless.  gcc>=4.6 does not allow
it.

Change-Id: I87c10cd7b5d6a15f46ca20465882e7a940e850bf
  • Loading branch information
cco3 committed Nov 9, 2011
1 parent a2e215a commit d390240
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion libpp/format_output.h
Expand Up @@ -91,7 +91,7 @@ class formatter {
symbol_entry const & symbol;
sample_entry const & sample;
size_t pclass;
mutable counts_t & counts;
counts_t & counts;
extra_images const & extra;
double diff;
};
Expand Down

0 comments on commit d390240

Please sign in to comment.