505c505,513
< bool needsWritable() const { return cmd.needsWritable(); }
---
> bool needsWritable() const
> {
> // we should never check if a response needsWritable, the
> // request has this flag, and for a response we should rather
> // look at the hasSharers flag (if not set, the response is to
> // be considered writable)
> assert(isRequest());
> return cmd.needsWritable();
> }