summaryrefslogtreecommitdiffstats
path: root/clang-tools-extra/test/clang-tidy/checkers/Inputs/modernize-pass-by-value/header.h
blob: c2103cb3fc7a16031b996eb5e426ebe13d185b53 (plain)
1
2
3
4
5
6
7
8
9
10
class ThreadId {
public:
  ThreadId(const ThreadId &) {}
  ThreadId(ThreadId &&) {}
};

struct A {
  A(const ThreadId &tid) : threadid(tid) {}
  ThreadId threadid;
};
OpenPOWER on IntegriCloud