File tree Expand file tree Collapse file tree 2 files changed +5
-3
lines changed
branches/dist-snap/src/libsyntax/ext Expand file tree Collapse file tree 2 files changed +5
-3
lines changed Original file line number Diff line number Diff line change @@ -6,7 +6,7 @@ refs/heads/try: f64fdf524a434f0e5cd0bc91d09c144723f3c90d
6
6
refs/tags/release-0.1: 1f5c5126e96c79d22cb7862f75304136e204f105
7
7
refs/heads/ndm: f3868061cd7988080c30d6d5bf352a5a5fe2460b
8
8
refs/heads/try2: 147ecfdd8221e4a4d4e090486829a06da1e0ca3c
9
- refs/heads/dist-snap: f9af11d6cc0266a5690897b4645d8cab2ed1115b
9
+ refs/heads/dist-snap: cbf9f5f5dfd5e3ec36899adf89c55a20380da63e
10
10
refs/tags/release-0.2: c870d2dffb391e14efb05aa27898f1f6333a9596
11
11
refs/tags/release-0.3: b5f0d0f648d9a6153664837026ba1be43d3e2503
12
12
refs/heads/try3: 9387340aab40a73e8424c48fd42f0c521a4875c0
Original file line number Diff line number Diff line change @@ -439,13 +439,15 @@ pub fn get_single_str_from_tts(cx: &ExtCtxt,
439
439
sp : Span ,
440
440
tts : & [ ast:: TokenTree ] ,
441
441
name : & str )
442
- -> Option < @ str > {
442
+ -> Option < ~ str > {
443
443
if tts. len ( ) != 1 {
444
444
cx. span_err ( sp, format ! ( "{} takes 1 argument." , name) ) ;
445
445
} else {
446
446
match tts[ 0 ] {
447
447
ast:: TTTok ( _, token:: LIT_STR ( ident) )
448
- | ast:: TTTok ( _, token:: LIT_STR_RAW ( ident, _) ) => return Some ( cx. str_of ( ident) ) ,
448
+ | ast:: TTTok ( _, token:: LIT_STR_RAW ( ident, _) ) => {
449
+ return Some ( cx. str_of ( ident) . to_str ( ) )
450
+ }
449
451
_ => cx. span_err ( sp, format ! ( "{} requires a string." , name) ) ,
450
452
}
451
453
}
You can’t perform that action at this time.
0 commit comments