Skip to content

Commit 81fcb58

Browse files
authored
[cxx-interop][docs] Update the C++ stdlib module name
The C++ standard library module was renamed from `std` to `CxxStdlib` in the context of Swift.
1 parent 06452fb commit 81fcb58

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

docs/CppInteroperability/CppInteroperabilityStatus.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,8 +22,8 @@ using V = std::vector<long>;
2222
```Swift
2323
// main.swift
2424
import CxxTypes
25-
import std.vector
26-
import std.algorithm
25+
import CxxStdlib.vector
26+
import CxxStdlib.algorithm
2727

2828
// We can extend C++ types in Swift.
2929
extension V : RandomAccessCollection {

0 commit comments

Comments
 (0)