diff options
| author | Tim Chevalier <chevalier@alum.wellesley.edu> | 2012-10-11 15:35:31 -0700 |
|---|---|---|
| committer | Tim Chevalier <chevalier@alum.wellesley.edu> | 2012-10-11 16:00:30 -0700 |
| commit | bfbb7197d71a6ba48904e06e694bb53810825cf4 (patch) | |
| tree | dde8886d576448c3a22d17a29a28fefcc4d78d6d /src/libsyntax | |
| parent | d2efd7edf70be1a97b7de8709231963bb45ae33f (diff) | |
| download | rust-bfbb7197d71a6ba48904e06e694bb53810825cf4.tar.gz rust-bfbb7197d71a6ba48904e06e694bb53810825cf4.zip | |
Update FIXME numbers
Diffstat (limited to 'src/libsyntax')
| -rw-r--r-- | src/libsyntax/ast.rs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/libsyntax/ast.rs b/src/libsyntax/ast.rs index a27336097d0..435f52b4bf8 100644 --- a/src/libsyntax/ast.rs +++ b/src/libsyntax/ast.rs @@ -437,7 +437,7 @@ impl proto : cmp::Eq { #[auto_serialize] #[auto_deserialize] enum vstore { - // FIXME (#2112): Change uint to @expr (actually only constant exprs) + // FIXME (#3469): Change uint to @expr (actually only constant exprs) vstore_fixed(Option<uint>), // [1,2,3,4]/_ or 4 vstore_uniq, // ~[1,2,3,4] vstore_box, // @[1,2,3,4] @@ -447,7 +447,7 @@ enum vstore { #[auto_serialize] #[auto_deserialize] enum expr_vstore { - // FIXME (#2112): Change uint to @expr (actually only constant exprs) + // FIXME (#3469): Change uint to @expr (actually only constant exprs) expr_vstore_fixed(Option<uint>), // [1,2,3,4]/_ or 4 expr_vstore_uniq, // ~[1,2,3,4] expr_vstore_box, // @[1,2,3,4] |
