Skip to content

Commit

Permalink
Update links
Browse files Browse the repository at this point in the history
  • Loading branch information
atouchet authored and khuey committed Nov 21, 2021
1 parent b4ca04b commit 4b9da59
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ declarations can pair up definitions in one unit with references in another.
Almost all platforms other than Microsoft Windows follow the
[Itanium C++ ABI][itanium]'s rules for this.

[itanium]: https://itanium-cxx-abi.github.io/cxx-abi/abi.html#mangle
[itanium]: https://itanium-cxx-abi.github.io/cxx-abi/abi.html#mangling

For example, suppose a C++ compilation unit has the definition:

Expand Down
2 changes: 1 addition & 1 deletion src/ast.rs
Original file line number Diff line number Diff line change
Expand Up @@ -1488,7 +1488,7 @@ where
// whether this is a template.
//
// For the details, see
// http://itanium-cxx-abi.github.io/cxx-abi/abi.html#mangle.function-type
// https://itanium-cxx-abi.github.io/cxx-abi/abi.html#mangle.function-type
let scope = if let Some(template_args) = name.get_template_args(ctx.subs) {
let scope = scope.push(template_args);
if ctx.show_return_type && !name.is_ctor_dtor_conversion(ctx.subs) {
Expand Down
2 changes: 1 addition & 1 deletion src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
//! another. Almost all platforms other than Microsoft Windows follow the
//! [Itanium C++ ABI][itanium]'s rules for this.
//!
//! [itanium]: https://itanium-cxx-abi.github.io/cxx-abi/abi.html#mangle
//! [itanium]: https://itanium-cxx-abi.github.io/cxx-abi/abi.html#mangling
//!
//! For example, suppose a C++ compilation unit has the definition:
//!
Expand Down

0 comments on commit 4b9da59

Please sign in to comment.