File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed
tools/lldb-moduleimport-test Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -63,7 +63,7 @@ static void printValidationInfo(llvm::StringRef data) {
63
63
}
64
64
65
65
static void resolveTypeFromMangledNameList (
66
- swift::ASTContext &Ctx, llvm::SmallVector <std::string, 8 > & MangledNames) {
66
+ swift::ASTContext &Ctx, llvm::ArrayRef <std::string> MangledNames) {
67
67
std::string Error;
68
68
for (auto &Mangled : MangledNames) {
69
69
swift::Type ResolvedType =
@@ -78,8 +78,8 @@ static void resolveTypeFromMangledNameList(
78
78
}
79
79
80
80
static void
81
- collectMangledNames (std::string &FilePath,
82
- llvm::SmallVector <std::string, 8 > &MangledNames) {
81
+ collectMangledNames (const std::string &FilePath,
82
+ llvm::SmallVectorImpl <std::string> &MangledNames) {
83
83
std::string Name;
84
84
std::ifstream InputStream (FilePath);
85
85
while (std::getline (InputStream, Name)) {
You can’t perform that action at this time.
0 commit comments