File tree Expand file tree Collapse file tree 4 files changed +10
-5
lines changed
std/utilities/tuple/tuple.tuple/tuple.cnstr Expand file tree Collapse file tree 4 files changed +10
-5
lines changed Original file line number Diff line number Diff line change 6363 cxx : [ 'clang++-19' ]
6464 include :
6565 - config : ' generic-gcc'
66- cc : ' gcc-13 '
67- cxx : ' g++-13 '
66+ cc : ' gcc-14 '
67+ cxx : ' g++-14 '
6868 steps :
6969 - uses : actions/checkout@v4
7070 - name : ${{ matrix.config }}.${{ matrix.cxx }}
@@ -101,8 +101,8 @@ jobs:
101101 cxx : [ 'clang++-19' ]
102102 include :
103103 - config : ' generic-gcc-cxx11'
104- cc : ' gcc-13 '
105- cxx : ' g++-13 '
104+ cc : ' gcc-14 '
105+ cxx : ' g++-14 '
106106 - config : ' generic-cxx23'
107107 cc : ' clang-17'
108108 cxx : ' clang++-17'
Original file line number Diff line number Diff line change @@ -158,6 +158,11 @@ void framework_self_test() {
158158template <typename T> class UncompressibleAllocator : public std ::allocator<T> {
159159 public:
160160 char X;
161+
162+ template <class U >
163+ struct rebind {
164+ using other = UncompressibleAllocator<U>;
165+ };
161166};
162167
163168void string_test () {
Original file line number Diff line number Diff line change 99// UNSUPPORTED: c++03
1010
1111// FIXME: Why does this start to fail with GCC 14?
12- // XFAIL: gcc-14
12+ // XFAIL: !(c++11 || c++14) && gcc-14
1313
1414// See https://llvm.org/PR31384.
1515
You can’t perform that action at this time.
0 commit comments