MCPcopy Create free account
hub / github.com/andreasfertig/cppinsights / T

Class T

tests/Issue374.cpp:3–22  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

1struct S;
2
3struct T
4{
5 int S::* s_mptr;
6 int T::* t_mptr;
7 static int T::* static_mptr;
8
9 template<int S::*> void f();
10 template<int T::*> void f();
11
12 template<int (S::*)()> void f();
13 template<int (T::*)()> void f();
14
15 struct N
16 {
17 int S::* s_mptr;
18 int T::* t_mptr;
19 int N::* n_mptr;
20 };
21 int N::* n_mptr;
22};
23
24int T::* T::static_mptr = 0;
25template<int T::*> void T::f() {}

Callers 9

createFunction · 0.70
PersonClass · 0.70
testClass · 0.70
conceptsTest.cppFile · 0.70
fooFunction · 0.70

Calls

no outgoing calls

Tested by 1

createFunction · 0.56