Skip to content

Commit 81d177a

Browse files
hokeincopybara-github
authored andcommitted
Revert "Reapply "[Clang] Implement resolution for CWG1835 (#92957)" (#98547)"
This reverts commit ce4aada6e2135e29839f672a6599db628b53295d and a follow-up patch 8ef26f1289bf069ccc0d6383f2f4c0116a1206c1. This new warning can not be fully suppressed by the `-Wno-missing-dependent-template-keyword` flag, this gives developer no time to do the cleanup in a large codebase, see llvm/llvm-project#98547 (comment) NOKEYCHECK=True GitOrigin-RevId: 59e56eeb1d9c0d25a522ae09f501a350981a31de
1 parent 298c6cc commit 81d177a

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

include/regex

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4214,7 +4214,7 @@ public:
42144214
_LIBCPP_HIDE_FROM_ABI int compare(const value_type* __s) const { return str().compare(__s); }
42154215

42164216
_LIBCPP_HIDE_FROM_ABI void swap(sub_match& __s) _NOEXCEPT_(__is_nothrow_swappable_v<_BidirectionalIterator>) {
4217-
this->template pair<_BidirectionalIterator, _BidirectionalIterator>::swap(__s);
4217+
this->pair<_BidirectionalIterator, _BidirectionalIterator>::swap(__s);
42184218
std::swap(matched, __s.matched);
42194219
}
42204220
};

0 commit comments

Comments
 (0)