Skip to content

Instantly share code, notes, and snippets.

@uniphil
Created January 25, 2015 02:57
Show Gist options
  • Select an option

  • Save uniphil/709db1e5c0bbbebdc110 to your computer and use it in GitHub Desktop.

Select an option

Save uniphil/709db1e5c0bbbebdc110 to your computer and use it in GitHub Desktop.
impl Drop for PortMidi {
fn drop(&mut self) {
match portmidi::terminate() {
Err(why) => panic!(why),
Ok(_) => {/* nothing to do here */}
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment