Merge pull request #4452 from apasel422/cond-macro-fix

libsyntax: Fix name generation in condition! macro
This commit is contained in:
Tim Chevalier
2013-01-11 20:09:54 -08:00
+1 -1
View File
@@ -307,7 +307,7 @@ fn key(_x: @::core::condition::Handler<$in,$out>) { }
pub const cond : ::core::condition::Condition<$in,$out> =
::core::condition::Condition {
name: stringify!(c),
name: stringify!($c),
key: key
};
}