Compile-time function execution: Difference between revisions

Content deleted Content added
It's not a stub anymore. If you think more info is needed restore the tag
No edit summary
Line 21:
// Factorial<0>::value == 1
void foo() {
int x = Factorial<0>::value; // == 01
int y = Factorial<4>::value; // == 24
}