Cleanup InternedString.

This commit is contained in:
Jeffrey Seyfried
2016-11-17 14:04:20 +00:00
parent e85a0d70b8
commit 36c8f6b0d3
26 changed files with 62 additions and 127 deletions

View File

@@ -643,7 +643,7 @@ impl<'a> ExtCtxt<'a> {
loop {
if self.codemap().with_expn_info(expn_id, |info| {
info.map_or(None, |i| {
if i.callee.name().as_str() == "include" {
if i.callee.name() == "include" {
// Stop going up the backtrace once include! is encountered
return None;
}