File: make_functions.h

package info (click to toggle)
ccls 0.20210330-1
  • links: PTS, VCS
  • area: main
  • in suites: bullseye
  • size: 1,340 kB
  • sloc: cpp: 13,398; python: 152; makefile: 15; objc: 15; ansic: 1
file content (10 lines) | stat: -rw-r--r-- 137 bytes parent folder | download | duplicates (4)
1
2
3
4
5
6
7
8
9
10
struct Bar {};

class Foobar {
 public:
  Foobar() {}
  Foobar(int) {}
  Foobar(int&&, Bar*, bool*) {}
  Foobar(int, Bar*, bool*) {}
};