Amanieu / intrusive-rs

Intrusive collections for Rust
Apache License 2.0
400 stars 47 forks source link

Switched intrusive_adapter to use pointed brackets #6

Closed WaDelma closed 7 years ago

WaDelma commented 7 years ago

Fixes #5.

Amanieu commented 7 years ago

Can you update the minimum Rust version in .travis.yml?

WaDelma commented 7 years ago

Oh. I didn't even think about testing with older rust versions... So you are okay with making it to work only in newer ones?

The problem seems to be with where clauses that don't contain anything. So I could also fix it by slightly complicating the macro...

Amanieu commented 7 years ago

I'm fine if it only works in newer versions (as long as it works on the latest stable). However you should still update .travis.yml to indicate what the minimum required Rust version is.

WaDelma commented 7 years ago

Okay. I updated it to 1.16.

Amanieu commented 7 years ago

Thanks!