First Commit
This commit is contained in:
10
externals/cryptopp/TestPrograms/test_cxx11_constexpr.cpp
vendored
Normal file
10
externals/cryptopp/TestPrograms/test_cxx11_constexpr.cpp
vendored
Normal file
@@ -0,0 +1,10 @@
|
||||
constexpr int fact(int n)
|
||||
{
|
||||
return n <= 1 ? 1 : (n * fact(n - 1));
|
||||
}
|
||||
|
||||
int main(int argc, char* argv[])
|
||||
{
|
||||
fact(4);
|
||||
return 0;
|
||||
}
|
||||
Reference in New Issue
Block a user