Skip to content

Commit

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

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

r? @Centril
  • Loading branch information
kennytm authored Feb 7, 2019
2 parents fab527f + 20022f8 commit 2b99c4e
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 4 deletions.
1 change: 1 addition & 0 deletions src/librustc_tsan/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_tsan"
version = "0.0.0"
edition = "2018"

[lib]
name = "rustc_tsan"
Expand Down
3 changes: 0 additions & 3 deletions src/librustc_tsan/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_tsan/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 2b99c4e

Please sign in to comment.