crate: update bitflags

This commit is contained in:
Tadas Barzdžius
2017-07-10 12:35:49 +03:00
committed by meh
parent 206ccd4e5a
commit 5afe774f40
16 changed files with 200 additions and 200 deletions

View File

@ -2,7 +2,7 @@ use libc::c_int;
use ffi::*;
bitflags! {
pub flags Flags: c_int {
const FORCED = AV_SUBTITLE_FLAG_FORCED,
pub struct Flags: c_int {
const FORCED = AV_SUBTITLE_FLAG_FORCED;
}
}