Skip to content

Commit e5bc6a1

Browse files
authored
Merge pull request #62296 from apple/egorzhdan/cxxstdlib-step2
[cxx-interop] Replace `std` module name with the new spelling `CxxStdlib`
2 parents e8cb537 + 7203a05 commit e5bc6a1

File tree

4 files changed

+4
-4
lines changed

4 files changed

+4
-4
lines changed

SwiftCompilerSources/Sources/Basic/Utils.swift

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
//===----------------------------------------------------------------------===//
1212

1313
@_exported import BasicBridging
14-
import std
14+
import CxxStdlib
1515

1616
/// The assert function to be used in the compiler.
1717
///

test/Interop/Cxx/stdlib/overlay/std-string-overlay.swift

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
// REQUIRES: OS=macosx || OS=linux-gnu
55

66
import StdlibUnittest
7-
import std
7+
import CxxStdlib
88

99
var StdStringOverlayTestSuite = TestSuite("std::string overlay")
1010

test/Interop/Cxx/stdlib/use-std-map.swift

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010

1111
import StdlibUnittest
1212
import StdMap
13-
import std
13+
import CxxStdlib
1414
import Cxx
1515

1616
var StdMapTestSuite = TestSuite("StdMap")

test/Interop/Cxx/stdlib/use-std-vector.swift

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77

88
import StdlibUnittest
99
import StdVector
10-
import std.vector
10+
import CxxStdlib.vector
1111

1212
var StdVectorTestSuite = TestSuite("StdVector")
1313

0 commit comments

Comments
 (0)