chore: review FIXMEs and TODOs (#272)

This patch also adds issue IDs when appropriate:

```rust
// FIXME(#XX): the foo-bar problem
// TODO(#XX): add support for feature baz here
```

This way, it’s easier to lookup the places relevant for tackling a
specific issue of the tracker, and conversely, it’s easier to
know which problem are "properly" tracked and which are not.
This commit is contained in:
Benoît Cortier 2023-11-13 10:06:15 -05:00 committed by GitHub
parent a5845f5c9f
commit a5aa8a2ef4
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
14 changed files with 27 additions and 20 deletions

View file

@ -170,7 +170,7 @@ pub trait StaticVirtualChannelProcessor: AsAny + fmt::Debug + Send {
#[doc(hidden)]
fn is_drdynvc(&self) -> bool {
// FIXME: temporary method that will be removed once drdynvc is ported to the new API
// FIXME(#61): temporary method that will be removed once drdynvc is ported to the new API
false
}
}