Add a use std::vec::Vec; to fix the no_std build.

This commit is contained in:
Dan Gohman
2018-09-04 21:57:32 -07:00
parent d4b8622393
commit 112e4a6083

View File

@@ -10,6 +10,7 @@ use isa::{RegInfo, TargetIsa};
use packed_option::ReservedValue; use packed_option::ReservedValue;
use std::fmt::{self, Write}; use std::fmt::{self, Write};
use std::string::String; use std::string::String;
use std::vec::Vec;
/// A `FuncWriter` used to decorate functions during printing. /// A `FuncWriter` used to decorate functions during printing.
pub trait FuncWriter { pub trait FuncWriter {