brson / rust-sdl

SDL bindings for Rust
MIT License
179 stars 52 forks source link

Fixed obsolete syntax: visibility-qualified trait implementation #40

Closed nielsegberts closed 11 years ago

nielsegberts commented 11 years ago

Note from rust:

pub or priv is meaningless for trait implementations, because the impl...for... form defines overloads for methods that already exist; remove the pub or priv

AngryLawyer commented 11 years ago

Top stuff, cheers for that.