This patch removes an unused member to avoid getting compiler warnings
when using clang.
         /** The port which we mirror internally. */
         SlavePort& slavePort;
 
-        /** The bus to which this port belongs. */
-        CoherentBus &bus;
-
       public:
 
         /**
          */
         SnoopRespPort(SlavePort& slave_port, CoherentBus& _bus) :
             MasterPort(slave_port.name() + ".snoopRespPort", &_bus),
-            slavePort(slave_port), bus(_bus) { }
+            slavePort(slave_port) { }
 
         /**
          * Override the sending of retries and pass them on through