diff options
| author | Niko Matsakis <niko@alum.mit.edu> | 2011-10-07 11:04:54 -0700 |
|---|---|---|
| committer | Brian Anderson <banderson@mozilla.com> | 2011-10-12 14:26:47 -0700 |
| commit | e9569371f7bda9fee0c27d829e6faa7b502f6733 (patch) | |
| tree | fec9319591661d0832bfa57e8334562861b568f6 /src/comp/metadata | |
| parent | f304c1bee58355afa19aa2796d21056c91d167d9 (diff) | |
| download | rust-e9569371f7bda9fee0c27d829e6faa7b502f6733.tar.gz rust-e9569371f7bda9fee0c27d829e6faa7b502f6733.zip | |
add 'u' to one other place it was missing
Diffstat (limited to 'src/comp/metadata')
| -rw-r--r-- | src/comp/metadata/decoder.rs | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/comp/metadata/decoder.rs b/src/comp/metadata/decoder.rs index c4a7d7fef99..ee0b7f6c758 100644 --- a/src/comp/metadata/decoder.rs +++ b/src/comp/metadata/decoder.rs @@ -280,6 +280,7 @@ fn item_family_to_str(fam: u8) -> str { alt fam as char { 'c' { ret "const"; } 'f' { ret "fn"; } + 'u' { ret "unsafe fn"; } 'p' { ret "pure fn"; } 'F' { ret "native fn"; } 'y' { ret "type"; } |
