File tree Expand file tree Collapse file tree 2 files changed +3
-1
lines changed Expand file tree Collapse file tree 2 files changed +3
-1
lines changed Original file line number Diff line number Diff line change @@ -2754,7 +2754,8 @@ namespace {
2754
2754
if (decl->getDeclContext ()->isNamespace () &&
2755
2755
decl->getDeclContext ()->getParent ()->isStdNamespace () &&
2756
2756
decl->getIdentifier () &&
2757
- (decl->getName () == " tzdb" || decl->getName () == " time_zone_link" ))
2757
+ (decl->getName () == " tzdb" || decl->getName () == " time_zone_link" ||
2758
+ decl->getName () == " time_zone" ))
2758
2759
return nullptr ;
2759
2760
2760
2761
auto &clangSema = Impl.getClangSema ();
Original file line number Diff line number Diff line change 4
4
// RUN: %target-run-simple-swift(-I %S/Inputs -cxx-interoperability-mode=upcoming-swift -Xcc -std=c++14)
5
5
// RUN: %target-run-simple-swift(-I %S/Inputs -cxx-interoperability-mode=upcoming-swift -Xcc -std=c++17)
6
6
// RUN: %target-run-simple-swift(-I %S/Inputs -cxx-interoperability-mode=upcoming-swift -Xcc -std=c++20)
7
+ // TODO once macOS CI supports C++23: %target-run-simple-swift(-I %S/Inputs -cxx-interoperability-mode=upcoming-swift -Xcc -std=c++23)
7
8
8
9
// REQUIRES: executable_test
9
10
You can’t perform that action at this time.
0 commit comments