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

Function main

tests/TemplateHandlerTest.cpp:51–69  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

49}
50
51int main()
52{
53 int a=1, b=2;
54
55 int mi = min(a, b);
56
57 double ad=2.4, bd=3.4;
58
59 auto md = min( ad, bd);
60
61 Template<int> w{2};
62
63 Template<double> ww{3.0};
64
65 tprintf("% world% %\n","Hello",'!',123);
66
67 int ma1 = max(1, 2);
68 double ma2 = max(2.0, 4.0);
69}

Callers

nothing calls this directly

Calls 3

tprintfFunction · 0.85
minFunction · 0.70
maxFunction · 0.70

Tested by

no test coverage detected