diff options
| author | Alex Crichton <alex@alexcrichton.com> | 2013-08-10 13:38:32 -0700 |
|---|---|---|
| committer | Alex Crichton <alex@alexcrichton.com> | 2013-08-12 23:18:51 -0700 |
| commit | 6feb58ed84d8dce2aea35a8be9fd8d7b6883f002 (patch) | |
| tree | bff648e5d7b25990f46933195ae47732ef1e110f /src/libsyntax | |
| parent | b820748ff5a2bc09b58dd7ac511e0f607d55f2e9 (diff) | |
| download | rust-6feb58ed84d8dce2aea35a8be9fd8d7b6883f002.tar.gz rust-6feb58ed84d8dce2aea35a8be9fd8d7b6883f002.zip | |
Define integer formats for all widths
Closes #1653
Diffstat (limited to 'src/libsyntax')
| -rw-r--r-- | src/libsyntax/ext/ifmt.rs | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/libsyntax/ext/ifmt.rs b/src/libsyntax/ext/ifmt.rs index 66b091849c0..6dda3fc26e8 100644 --- a/src/libsyntax/ext/ifmt.rs +++ b/src/libsyntax/ext/ifmt.rs @@ -638,6 +638,7 @@ impl Context { "X" => "UpperHex", "s" => "String", "p" => "Pointer", + "t" => "Binary", _ => { self.ecx.span_err(sp, fmt!("unknown format trait \ `%s`", tyname)); |
