diff options
Diffstat (limited to '')
-rw-r--r-- | src/list.h | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -535,7 +535,7 @@ namespace Bu | |||
535 | * Get the current size of the list. | 535 | * Get the current size of the list. |
536 | *@returns (int) The current size of the list. | 536 | *@returns (int) The current size of the list. |
537 | */ | 537 | */ |
538 | int getSize() const | 538 | long getSize() const |
539 | { | 539 | { |
540 | return nSize; | 540 | return nSize; |
541 | } | 541 | } |
@@ -586,7 +586,7 @@ namespace Bu | |||
586 | Link *pLast; | 586 | Link *pLast; |
587 | linkalloc la; | 587 | linkalloc la; |
588 | valuealloc va; | 588 | valuealloc va; |
589 | int nSize; | 589 | long nSize; |
590 | cmpfunc cmp; | 590 | cmpfunc cmp; |
591 | }; | 591 | }; |
592 | } | 592 | } |