Fix a missing use bitflags::bitflags;.

This commit is contained in:
Dan Gohman
2019-11-08 19:43:17 -08:00
parent 061b453255
commit f5dad66593

View File

@@ -1,5 +1,6 @@
#![allow(non_camel_case_types)] #![allow(non_camel_case_types)]
use crate::{winerror, Result}; use crate::{winerror, Result};
use bitflags::bitflags;
use cvt::cvt; use cvt::cvt;
use std::ffi::{c_void, OsString}; use std::ffi::{c_void, OsString};
use std::fs::File; use std::fs::File;