diff options
| author | Patrick Walton <[email protected]> | 2011-05-10 17:27:30 -0700 |
|---|---|---|
| committer | Patrick Walton <[email protected]> | 2011-05-10 17:27:59 -0700 |
| commit | 10c926652515052000e44ef4ac10e6b4ebbc6e3a (patch) | |
| tree | bce087c37ed3f7b74264c67b3b0b62757e910987 /src/comp/util/common.rs | |
| parent | Remove a couple more spurious 'mutable' value qualifiers from macos_OS.rs. (diff) | |
| download | rust-10c926652515052000e44ef4ac10e6b4ebbc6e3a.tar.xz rust-10c926652515052000e44ef4ac10e6b4ebbc6e3a.zip | |
rustc: Number everything with an annotation
Diffstat (limited to 'src/comp/util/common.rs')
| -rw-r--r-- | src/comp/util/common.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/comp/util/common.rs b/src/comp/util/common.rs index 2c4dcd26..5181cb45 100644 --- a/src/comp/util/common.rs +++ b/src/comp/util/common.rs @@ -161,7 +161,7 @@ fn log_block_err(&ast.block b) -> () { fn log_ann(&ast.ann a) -> () { alt (a) { - case (ast.ann_none) { + case (ast.ann_none(_)) { log("ann_none"); } case (ast.ann_type(_,_,_)) { |