mirror of
https://hub.njuu.cf/TheAlgorithms/C-Plus-Plus.git
synced 2023-10-11 13:05:55 +08:00
fix function return
This commit is contained in:
parent
2fe7e4add0
commit
497ede21e0
@ -74,6 +74,10 @@ bool deleteString(trie* root, std::string str, int index) {
|
||||
return true;
|
||||
}
|
||||
}
|
||||
|
||||
/* should not return here */
|
||||
std::cout << __func__ << ":" << __LINE__ << "Should not reach this line\n";
|
||||
return false;
|
||||
}
|
||||
|
||||
int main() {
|
||||
|
Loading…
Reference in New Issue
Block a user