mirror of
https://hub.njuu.cf/TheAlgorithms/C-Plus-Plus.git
synced 2023-10-11 13:05:55 +08:00
fix: Wrong function name
This commit is contained in:
parent
52b9b0bb98
commit
f05aadf3b8
@ -33,7 +33,7 @@ uint64_t fib(uint64_t n) {
|
|||||||
if (n <= 2)
|
if (n <= 2)
|
||||||
return f2;
|
return f2;
|
||||||
if (n >= 93) {
|
if (n >= 93) {
|
||||||
std::err << "Cannot compute for n>93 due to limit of 64-bit integers\n";
|
std::cerr << "Cannot compute for n>93 due to limit of 64-bit integers\n";
|
||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user