Skip to content

Commit

Permalink
Rollup merge of rust-lang#58219 - taiki-e:librustc_asan-2018, r=Centril
Browse files Browse the repository at this point in the history
librustc_asan => 2018

Transitions `librustc_asan` to Rust 2018; cc rust-lang#58099

r? @Centril
  • Loading branch information
kennytm committed Feb 7, 2019
2 parents f3908ad + 30fab05 commit c1123aa
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 4 deletions.
1 change: 1 addition & 0 deletions src/librustc_asan/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@ authors = ["The Rust Project Developers"]
build = "build.rs"
name = "rustc_asan"
version = "0.0.0"
edition = "2018"

[lib]
name = "rustc_asan"
Expand Down
3 changes: 0 additions & 3 deletions src/librustc_asan/build.rs
Original file line number Diff line number Diff line change
@@ -1,6 +1,3 @@
extern crate build_helper;
extern crate cmake;

use std::env;
use build_helper::sanitizer_lib_boilerplate;

Expand Down
3 changes: 2 additions & 1 deletion src/librustc_asan/lib.rs
Original file line number Diff line number Diff line change
@@ -1,8 +1,9 @@
#![sanitizer_runtime]
#![feature(nll)]
#![feature(sanitizer_runtime)]
#![feature(staged_api)]
#![no_std]
#![unstable(feature = "sanitizer_runtime_lib",
reason = "internal implementation detail of sanitizers",
issue = "0")]

#![deny(rust_2018_idioms)]

0 comments on commit c1123aa

Please sign in to comment.