2
0
mirror of https://github.com/boostorg/thread.git synced 2026-01-19 16:52:12 +00:00
Files
thread/example
Andrey Semashev 8ebd61c280 Avoid relying on implicit copy constructor/operator deprecated in C++11.
C++11 deprecates implicit default copy constructors and operators if the class
has user-defined destructor or copy constructor/operator. gcc 9 generates
warnings when this deprecated language feature is used. This commit fixes that
by providing user-defained copy constructors/operators where needed. The
added definitions are equivalent to the implicitly generated by the compiler.

For thread::id, removed copy constructor to allow the compiler generate all
set of constructors and assignment operators, including move.
2020-04-05 02:17:14 +03:00
..
2015-09-30 00:01:33 +02:00
2017-09-30 12:18:30 +02:00
2015-04-30 01:11:39 +02:00
2017-09-19 03:20:46 +02:00
2015-09-08 21:39:33 +02:00
2015-04-25 10:11:01 +02:00
2015-06-21 23:09:15 +02:00