Skip to content

Commit 714cb05

Browse files
authored
Merge pull request #31337 from martinboehme/patch-1
2 parents debc627 + 4d13d4c commit 714cb05

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

docs/CppInteroperabilityManifesto.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -183,7 +183,7 @@ that pick different sides, forcing the user to choose.
183183

184184
Swift/C++ interoperability builds on top of the Swift/C interoperability, so it
185185
helps to be familiar with [Swift's strategy for importing C
186-
modules](HowSwiftImportsCModules.md).
186+
modules](HowSwiftImportsCAPIs.md).
187187

188188
# Importing C++ APIs into Swift
189189

@@ -2406,7 +2406,7 @@ unambiguously to C++.
24062406
// C++ support module in the Swift standard library.
24072407

24082408
typealias CxxPointer<T> = UnsafeMutablePointer<T> // T*
2409-
typealias CxxConstPointer<T> = UnsafeMutablePointer<T> // const T*
2409+
typealias CxxConstPointer<T> = UnsafePointer<T> // const T*
24102410

24112411
typealias CxxRef<T> = UnsafeMutablePointer<T> // T&
24122412
typealias CxxConstRef<T> = UnsafePointer<T> // const T&

0 commit comments

Comments
 (0)