Description: Remove unnecessary mutable specifier, disallowed on reference
 As far as I can see, this is unnecessary since no instances of this class
 are ever declared const, and using 'mutable' on a reference is
 non-standard-conformant and disallowed by default by G++ 4.6.
Author: Colin Watson <cjwatson@ubuntu.com>
Bug-Ubuntu: https://bugs.launchpad.net/bugs/832763
Forwarded: no
Last-Update: 2011-09-10

Index: b/include/WE17Driver.h
===================================================================
--- a/include/WE17Driver.h
+++ b/include/WE17Driver.h
@@ -104,7 +104,7 @@
                                                 throw (nsErrors::CSystemExc);
         CFreq GetMatchingFreq (unsigned, double = 0) const throw();
 
-        mutable ::iwreq_data& m_Data;
+        ::iwreq_data& m_Data;
 
 
       private :
