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

Class A

docs/examples/recursive-template.cpp:5–8  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

3
4template<int n>
5struct A
6{
7 static const auto value = A<n - 1>::value + n;
8};
9
10template<>
11struct A<1>

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected