brintos

brintos / llvm-project-archived public Read only

0
0
Text · 167 B · c2103cb Raw
11 lines · c
1class ThreadId {2public:3  ThreadId(const ThreadId &) {}4  ThreadId(ThreadId &&) {}5};6 7struct A {8  A(const ThreadId &tid) : threadid(tid) {}9  ThreadId threadid;10};11