Skip to content

Commit f375e36

Browse files
committed
[ClangImporter] Rename OMPArraySection to ArraySection
1 parent 47a06b2 commit f375e36

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

lib/ClangImporter/ClangAdapter.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -409,7 +409,7 @@ OmissionTypeName importer::getClangTypeNameForOmission(clang::ASTContext &ctx,
409409
return OmissionTypeName();
410410

411411
// OpenMP types that don't have Swift equivalents.
412-
case clang::BuiltinType::OMPArraySection:
412+
case clang::BuiltinType::ArraySection:
413413
case clang::BuiltinType::OMPArrayShaping:
414414
case clang::BuiltinType::OMPIterator:
415415
return OmissionTypeName();

lib/ClangImporter/ImportType.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -327,7 +327,7 @@ namespace {
327327
return Type();
328328

329329
// OpenMP types that don't have Swift equivalents.
330-
case clang::BuiltinType::OMPArraySection:
330+
case clang::BuiltinType::ArraySection:
331331
case clang::BuiltinType::OMPArrayShaping:
332332
case clang::BuiltinType::OMPIterator:
333333
return Type();

0 commit comments

Comments
 (0)