diff options
Diffstat (limited to 'src/common/container.h')
-rw-r--r-- | src/common/container.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/common/container.h b/src/common/container.h index 5da0fbc853..280c1a8c7e 100644 --- a/src/common/container.h +++ b/src/common/container.h @@ -78,9 +78,9 @@ extern INLINE void smartlist_set(smartlist_t *sl, int idx, void *val) { #define smartlist_set(sl, idx, val) ((sl)->list[idx] = (val)) #endif -void smartlist_swap(smartlist_t *sl, int idx1, int idx2); +// void smartlist_swap(smartlist_t *sl, int idx1, int idx2); /**DOCDOC*/ -extern INLINE void smartlist_swap(smartlist_t *sl, int idx1, int idx2) +static INLINE void smartlist_swap(smartlist_t *sl, int idx1, int idx2) { if (idx1 != idx2) { void *elt = smartlist_get(sl, idx1); |