diff options
author | Nick Fitzgerald <fitzgen@gmail.com> | 2017-07-25 16:29:03 -0700 |
---|---|---|
committer | Nick Fitzgerald <fitzgen@gmail.com> | 2017-07-25 16:32:13 -0700 |
commit | 1baf7dc1c86d6b4a3ebe8ffab5efbc8fa3d4be32 (patch) | |
tree | 83a9d0e064dbf25aac99377930df7223eef57745 /src | |
parent | 23dbe487b8d2a142fb03d9aefc3b4dd29aa78009 (diff) |
s/servo/rust-lang-nursery/ \o/
Fixes #852
Diffstat (limited to 'src')
-rw-r--r-- | src/codegen/mod.rs | 4 | ||||
-rw-r--r-- | src/ir/comp.rs | 2 | ||||
-rw-r--r-- | src/ir/function.rs | 4 | ||||
-rw-r--r-- | src/lib.rs | 6 | ||||
-rw-r--r-- | src/main.rs | 6 | ||||
-rw-r--r-- | src/options.rs | 2 |
6 files changed, 12 insertions, 12 deletions
diff --git a/src/codegen/mod.rs b/src/codegen/mod.rs index 78d73cd0..00237e51 100644 --- a/src/codegen/mod.rs +++ b/src/codegen/mod.rs @@ -1601,7 +1601,7 @@ impl CodeGenerator for CompInfo { // is making the struct 1-byte sized. // // This is apparently not the case for C, see: - // https://github.com/servo/rust-bindgen/issues/551 + // https://github.com/rust-lang-nursery/rust-bindgen/issues/551 // // Just get the layout, and assume C++ if not. // @@ -1703,7 +1703,7 @@ impl CodeGenerator for CompInfo { ) }; - // FIXME when [issue #465](https://github.com/servo/rust-bindgen/issues/465) ready + // FIXME when [issue #465](https://github.com/rust-lang-nursery/rust-bindgen/issues/465) ready let too_many_base_vtables = self.base_members() .iter() .filter(|base| { diff --git a/src/ir/comp.rs b/src/ir/comp.rs index 0960ee11..407d58ac 100644 --- a/src/ir/comp.rs +++ b/src/ir/comp.rs @@ -1136,7 +1136,7 @@ impl CompInfo { // Let's just assume that if the cursor we've found is a // definition, it's a valid inner type. // - // [1]: https://github.com/servo/rust-bindgen/issues/482 + // [1]: https://github.com/rust-lang-nursery/rust-bindgen/issues/482 let is_inner_struct = cur.semantic_parent() == cursor || cur.is_definition(); if !is_inner_struct { diff --git a/src/ir/function.rs b/src/ir/function.rs index 663bb8e3..fbb6121e 100644 --- a/src/ir/function.rs +++ b/src/ir/function.rs @@ -193,7 +193,7 @@ pub fn cursor_mangling(ctx: &BindgenContext, // We early return here because libclang may crash in some case // if we pass in a variable inside a partial specialized template. - // See servo/rust-bindgen#67, and servo/rust-bindgen#462. + // See rust-lang-nursery/rust-bindgen#67, and rust-lang-nursery/rust-bindgen#462. if cursor.is_in_non_fully_specialized_template() { return None; } @@ -474,7 +474,7 @@ impl Trace for FunctionSig { // Function pointers follow special rules, see: // -// https://github.com/servo/rust-bindgen/issues/547, +// https://github.com/rust-lang-nursery/rust-bindgen/issues/547, // https://github.com/rust-lang/rust/issues/38848, // and https://github.com/rust-lang/rust/issues/40158 // @@ -484,7 +484,7 @@ impl Builder { /// implement some processing on comments to work around issues as described /// in: /// - /// https://github.com/servo/rust-bindgen/issues/426 + /// https://github.com/rust-lang-nursery/rust-bindgen/issues/426 pub fn generate_comments(mut self, doit: bool) -> Self { self.options.generate_comments = doit; self @@ -513,7 +513,7 @@ impl Builder { /// However, some old libclang versions seem to return incorrect results in /// some cases for non-mangled functions, see [1], so we allow disabling it. /// - /// [1]: https://github.com/servo/rust-bindgen/issues/528 + /// [1]: https://github.com/rust-lang-nursery/rust-bindgen/issues/528 pub fn trust_clang_mangling(mut self, doit: bool) -> Self { self.options.enable_mangling = doit; self @@ -1038,7 +1038,7 @@ pub struct BindgenOptions { /// However, some old libclang versions seem to return incorrect results in /// some cases for non-mangled functions, see [1], so we allow disabling it. /// - /// [1]: https://github.com/servo/rust-bindgen/issues/528 + /// [1]: https://github.com/rust-lang-nursery/rust-bindgen/issues/528 pub enable_mangling: bool, /// Whether to prepend the enum name to bitfield or constant variants. diff --git a/src/main.rs b/src/main.rs index f202cc18..9cd4f806 100644 --- a/src/main.rs +++ b/src/main.rs @@ -80,9 +80,9 @@ pub fn main() { fn print_verbose_err() { println!("Bindgen unexpectedly panicked"); println!("This may be caused by one of the known-unsupported \ - things (https://github.com/servo/rust-bindgen#c), \ + things (https://github.com/rust-lang-nursery/rust-bindgen#c), \ please modify the bindgen flags to work around it as \ - described in https://github.com/servo/rust-bindgen#c"); + described in https://github.com/rust-lang-nursery/rust-bindgen#c"); println!("Otherwise, please file an issue at \ - https://github.com/servo/rust-bindgen/issues/new"); + https://github.com/rust-lang-nursery/rust-bindgen/issues/new"); } diff --git a/src/options.rs b/src/options.rs index bf479ca5..23df6370 100644 --- a/src/options.rs +++ b/src/options.rs @@ -65,7 +65,7 @@ pub fn builder_from_flags<I> Arg::with_name("no-doc-comments") .long("no-doc-comments") .help("Avoid including doc comments in the output, see: \ - https://github.com/servo/rust-bindgen/issues/426"), + https://github.com/rust-lang-nursery/rust-bindgen/issues/426"), Arg::with_name("no-recursive-whitelist") .long("no-recursive-whitelist") .help("Avoid whitelisting types recursively."), |