11 lines
167 B
C++
11 lines
167 B
C++
class ThreadId {
|
|
public:
|
|
ThreadId(const ThreadId &) {}
|
|
ThreadId(ThreadId &&) {}
|
|
};
|
|
|
|
struct A {
|
|
A(const ThreadId &tid) : threadid(tid) {}
|
|
ThreadId threadid;
|
|
};
|