libsyntax: Make float literals not use @str

This commit is contained in:
Patrick Walton
2014-01-15 17:15:39 -08:00
committed by Huon Wilson
parent 8d6ef2e1b1
commit b496d7bec2
7 changed files with 24 additions and 20 deletions

View File

@@ -728,8 +728,8 @@ pub enum Lit_ {
LitInt(i64, IntTy),
LitUint(u64, UintTy),
LitIntUnsuffixed(i64),
LitFloat(@str, FloatTy),
LitFloatUnsuffixed(@str),
LitFloat(InternedString, FloatTy),
LitFloatUnsuffixed(InternedString),
LitNil,
LitBool(bool),
}