about summary refs log tree commit diff
path: root/src/libsyntax/attr.rs
diff options
context:
space:
mode:
authorTim Chevalier <chevalier@alum.wellesley.edu>2012-07-05 15:58:25 -0700
committerTim Chevalier <chevalier@alum.wellesley.edu>2012-07-05 16:10:29 -0700
commit889be71cb4d4252073f2dbdedb71e8ea1645f6e3 (patch)
treef1ec5573b95225ba92358ee9b9832c50995f8f44 /src/libsyntax/attr.rs
parent50d2e7e07e79f3f055832756469eb974fe719de1 (diff)
downloadrust-889be71cb4d4252073f2dbdedb71e8ea1645f6e3.tar.gz
rust-889be71cb4d4252073f2dbdedb71e8ea1645f6e3.zip
Comments only: change TODOs to FIXMEs and annotate them
Diffstat (limited to 'src/libsyntax/attr.rs')
-rw-r--r--src/libsyntax/attr.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/libsyntax/attr.rs b/src/libsyntax/attr.rs
index 838e275332b..43a6183b4d5 100644
--- a/src/libsyntax/attr.rs
+++ b/src/libsyntax/attr.rs
@@ -368,7 +368,7 @@ enum inline_attr {
 
 /// True if something like #[inline] is found in the list of attrs.
 fn find_inline_attr(attrs: ~[ast::attribute]) -> inline_attr {
-    // TODO---validate the usage of #[inline] and #[inline(always)]
+    // FIXME (#2809)---validate the usage of #[inline] and #[inline(always)]
     do vec::foldl(ia_none, attrs) |ia,attr| {
         alt attr.node.value.node {
           ast::meta_word(@"inline") { ia_hint }