Re: [PATCH] libstdc++/89130 and libstdc++/89090 fixes for vector relocation

2019-02-26 Thread Jonathan Wakely
On 24/02/19 15:46 +, Jonathan Wakely wrote: On 21/02/19 20:47 +, Jonathan Wakely wrote: On 05/02/19 14:45 +, Jonathan Wakely wrote: This fixes two PRs, one trivial (don't use C++17 features in C++11 mode) and one more serious (don't require MoveInsertable when we should only need Co

Re: [PATCH] libstdc++/89130 and libstdc++/89090 fixes for vector relocation

2019-02-24 Thread Jonathan Wakely
On 21/02/19 20:47 +, Jonathan Wakely wrote: On 05/02/19 14:45 +, Jonathan Wakely wrote: This fixes two PRs, one trivial (don't use C++17 features in C++11 mode) and one more serious (don't require MoveInsertable when we should only need CopyInsertable). It would be nice to rely on if-co

Re: [PATCH] libstdc++/89130 and libstdc++/89090 fixes for vector relocation

2019-02-21 Thread Jonathan Wakely
On 05/02/19 14:45 +, Jonathan Wakely wrote: This fixes two PRs, one trivial (don't use C++17 features in C++11 mode) and one more serious (don't require MoveInsertable when we should only need CopyInsertable). It would be nice to rely on if-constexpr in C++11 mode, but it causes clang warnin

Re: [PATCH] libstdc++/89130 and libstdc++/89090 fixes for vector relocation

2019-02-05 Thread Jonathan Wakely
On 05/02/19 14:45 +, Jonathan Wakely wrote: This fixes two PRs, one trivial (don't use C++17 features in C++11 mode) and one more serious (don't require MoveInsertable when we should only need CopyInsertable). It would be nice to rely on if-constexpr in C++11 mode, but it causes clang warnin