Code
Hub
Workspaces
Following
Trending
Connect
MCP
copy
Create free account
hub
/
github.com/andreasfertig/cppinsights
/ main
Function
main
tests/EduCfrontOverloadTest.cpp:16–38 ·
view source on GitHub ↗
Source
from the content-addressed store, hash-verified
14
void Bun(int) {}
15
16
int main()
17
{
18
int* p{};
19
const int* cp{};
20
21
Fun(2);
22
Fun(3.14);
23
Fun(p);
24
Fun(cp);
25
26
int r{};
27
Fun(r);
28
29
unsigned ur{};
30
Fun(ur);
31
32
Run(4);
33
34
int i{};
35
Run(i);
36
37
Bun(4);
38
}
Callers
nothing calls this directly
Calls
3
Run
Function · 0.85
Bun
Function · 0.85
Fun
Function · 0.70
Tested by
no test coverage detected