Skip to content

Commit 96f539b

Browse files
committed
Merge pull request #69 from servo/conflicting-rawptr-mut-send
Upgrade to rustc 1.0.0-nightly (4db0b3246 2015-02-25) (built 2015-02-26)
2 parents 529d56e + b3f2735 commit 96f539b

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

examples/event-log/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,5 +5,5 @@ version = "0.0.0"
55
authors = [ "The Servo Project Developers" ]
66

77
[dependencies.string_cache]
8-
git = "https://github.com/servo/string-cache"
8+
path = "../.."
99
features = ["log-events"]

examples/summarize-events/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -9,4 +9,4 @@ csv = "0"
99
rustc-serialize = "0"
1010

1111
[dependencies.string_cache]
12-
git = "https://github.com/servo/string-cache"
12+
path = "../.."

src/atom/mod.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@ struct StringCacheEntry {
5656
string: String,
5757
}
5858

59-
unsafe impl Send for *mut StringCacheEntry { }
59+
unsafe impl Send for StringCache { }
6060

6161
impl StringCacheEntry {
6262
fn new(next: *mut StringCacheEntry, hash: u64, string_to_add: &str) -> StringCacheEntry {

0 commit comments

Comments
 (0)