2
0
mirror of https://github.com/boostorg/thread.git synced 2026-02-08 11:12:23 +00:00

Compare commits

..

3 Commits

Author SHA1 Message Date
Peter Dimov
5d68c9c42c Merge pull request #408 from arvid-norlander/bugfix/fix-build-on-clang-19
Fix build on clang-19
2025-03-12 04:05:27 +02:00
Peter Dimov
b3183638cb Update ci.yml 2025-03-12 03:19:41 +02:00
Arvid Norlander
49ccf9c30a Fix build on clang-19 (which checks more things in uninstantiated templates)
Fixes issue #402
2024-11-08 16:48:43 +01:00
2 changed files with 8 additions and 5 deletions

View File

@@ -28,16 +28,19 @@ jobs:
os: ubuntu-latest
install: g++-5
- toolset: gcc-7
os: ubuntu-20.04
install: g++-7
container: ubuntu:18.04
os: ubuntu-latest
- toolset: gcc-9
os: ubuntu-20.04
container: ubuntu:20.04
os: ubuntu-latest
- toolset: gcc-11
os: ubuntu-22.04
- toolset: gcc-13
os: ubuntu-24.04
- toolset: clang
os: ubuntu-20.04
container: ubuntu:20.04
os: ubuntu-latest
install: clang
- toolset: clang
os: ubuntu-22.04
- toolset: clang

View File

@@ -4668,7 +4668,7 @@ namespace detail
}
run_it& operator=(BOOST_THREAD_RV_REF(run_it) x) BOOST_NOEXCEPT {
if (this != &x) {
that_=x.that;
that_=x.that_;
x.that_.reset();
}
return *this;