mirror of
https://hub.njuu.cf/TheAlgorithms/C-Plus-Plus.git
synced 2023-10-11 13:05:55 +08:00
fix: ARM GCC compiler error (#1952)
Co-authored-by: David Leal <halfpacho@gmail.com>
This commit is contained in:
parent
1645cf281f
commit
1772ee06cc
@ -146,7 +146,7 @@ int32_t list::last() {
|
||||
* @brief Utility function to find the i th element of the list
|
||||
* @returns the i th element of the list
|
||||
*/
|
||||
int32_t list::traverse(int index) {
|
||||
int32_t list::traverse(int32_t index) {
|
||||
Node *current = head;
|
||||
|
||||
int count = 0;
|
||||
|
Loading…
Reference in New Issue
Block a user