Use ast::AsmDialect's variants qualified, and drop the pointless prefix.

This commit is contained in:
Ms2ger 2015-09-21 11:45:04 +02:00
parent 22fa1aaade
commit 184c8a99ed
5 changed files with 9 additions and 9 deletions

View file

@ -10,7 +10,6 @@
// The Rust abstract syntax tree.
pub use self::AsmDialect::*;
pub use self::AttrStyle::*;
pub use self::BindingMode::*;
pub use self::BinOp_::*;
@ -1440,8 +1439,8 @@ pub enum Ty_ {
#[derive(Clone, PartialEq, Eq, RustcEncodable, RustcDecodable, Hash, Debug, Copy)]
pub enum AsmDialect {
AsmAtt,
AsmIntel
Att,
Intel,
}
#[derive(Clone, PartialEq, Eq, RustcEncodable, RustcDecodable, Hash, Debug)]