Skip to content

Commit 5696ea5

Browse files
committed
rollup merge of rust-lang#20157: alexcrichton/issue-20068
2 parents 71b46b1 + 76e3bc2 commit 5696ea5

File tree

315 files changed

+1699
-1233
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

315 files changed

+1699
-1233
lines changed

src/compiletest/compiletest.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,8 +22,8 @@ extern crate regex;
2222
use std::os;
2323
use std::io;
2424
use std::io::fs;
25-
use std::str::FromStr;
26-
use std::thunk::{Thunk};
25+
use std::str::{FromStr, from_str};
26+
use std::thunk::Thunk;
2727
use getopts::{optopt, optflag, reqopt};
2828
use common::Config;
2929
use common::{Pretty, DebugInfoGdb, DebugInfoLldb, Codegen};

src/doc/guide-ffi.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -450,6 +450,8 @@ them.
450450
451451
~~~no_run
452452
extern crate libc;
453+
454+
use std::c_str::ToCStr;
453455
use std::ptr;
454456
455457
#[link(name = "readline")]

0 commit comments

Comments
 (0)