diff options
| author | Erick Tryzelaar <erick.tryzelaar@gmail.com> | 2014-12-01 10:37:00 -0800 |
|---|---|---|
| committer | Erick Tryzelaar <erick.tryzelaar@gmail.com> | 2014-12-29 10:04:09 -0500 |
| commit | 590499eb3c886bf7f6b3a732816ea263f1777886 (patch) | |
| tree | eb288be6c90ab8fd182e193c0a07aced6b9b0b6e /src/libsyntax | |
| parent | b2fbed6e70cf99bd80fab1ea10ea605b612341c4 (diff) | |
| download | rust-590499eb3c886bf7f6b3a732816ea263f1777886.tar.gz rust-590499eb3c886bf7f6b3a732816ea263f1777886.zip | |
syntax: whitespace cleanup
Diffstat (limited to 'src/libsyntax')
| -rw-r--r-- | src/libsyntax/ast.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/libsyntax/ast.rs b/src/libsyntax/ast.rs index 0c8c17b080b..4dee6e8d66e 100644 --- a/src/libsyntax/ast.rs +++ b/src/libsyntax/ast.rs @@ -983,7 +983,7 @@ impl LitIntType { #[deriving(Clone, PartialEq, Eq, RustcEncodable, RustcDecodable, Hash, Show)] pub enum Lit_ { LitStr(InternedString, StrStyle), - LitBinary(Rc<Vec<u8> >), + LitBinary(Rc<Vec<u8>>), LitByte(u8), LitChar(char), LitInt(u64, LitIntType), |
