Sean Klein 0ef5dee3b8 Fix issue #2907.
Update the "borrow box" lint to avoid recommending the following
conversion:

```
  // Old
  pub fn f(&mut Box<T>) {...}

  // New
  pub fn f(&mut T) {...}
```

Given a mutable reference to a box, functions may want to change
"which" object the Box is pointing at.

This change avoids recommending removing the "Box" parameter
for mutable references.
2020-04-19 10:56:15 -04:00
..
2020-04-19 10:56:15 -04:00
2020-04-19 10:56:15 -04:00
2020-04-09 08:08:36 +02:00
2020-04-17 13:54:05 +02:00
2020-04-01 12:15:39 -07:00
2020-04-01 20:14:05 +02:00
2020-04-17 09:27:54 +02:00
2020-04-17 09:27:54 +02:00
2020-03-20 22:52:53 +00:00
2020-04-08 08:37:20 -07:00
2020-03-31 16:13:51 +05:30
2020-04-02 18:31:31 -07:00
2020-04-01 20:12:36 +02:00
2020-04-01 20:12:36 +02:00
2020-03-29 22:22:36 +02:00
2020-03-23 16:45:31 +00:00