diff options
| author | Paul Stansifer <paul.stansifer@gmail.com> | 2012-11-21 22:38:27 -0500 |
|---|---|---|
| committer | Graydon Hoare <graydon@mozilla.com> | 2012-11-29 12:09:11 -0800 |
| commit | 15e03e1e5e7bbde88b15411f9cb529d02ff5d23e (patch) | |
| tree | 4f89df9dc67c07379682e6f03025aff1e85266c9 /src/libsyntax/parse/token.rs | |
| parent | 6174a30d7c136c0fd163d512dfac840741a39f7c (diff) | |
| download | rust-15e03e1e5e7bbde88b15411f9cb529d02ff5d23e.tar.gz rust-15e03e1e5e7bbde88b15411f9cb529d02ff5d23e.zip | |
Forbid attrs on macros, since we don't handle them properly yet.
Diffstat (limited to 'src/libsyntax/parse/token.rs')
| -rw-r--r-- | src/libsyntax/parse/token.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/libsyntax/parse/token.rs b/src/libsyntax/parse/token.rs index 99c12be4980..c38895f39f1 100644 --- a/src/libsyntax/parse/token.rs +++ b/src/libsyntax/parse/token.rs @@ -344,7 +344,7 @@ impl ident_interner { } } -/** Key for thread-local data for sneaking interner information to the +/* Key for thread-local data for sneaking interner information to the * serializer/deserializer. It sounds like a hack because it is one. * Bonus ultra-hack: functions as keys don't work across crates, * so we have to use a unique number. See taskgroup_key! in task.rs |
