diff options
author | David Lamparter <equinox@opensourcerouting.org> | 2024-07-21 18:46:58 +0200 |
---|---|---|
committer | Donald Sharp <sharpd@nvidia.com> | 2024-07-31 14:08:53 +0200 |
commit | 05e915984c641d59b4d4b0e83c1f301de4cba460 (patch) | |
tree | 92808be60d0155f8890395e5a92055fd43d27c30 /lib/vector.h | |
parent | Merge pull request #16496 from donaldsharp/topotest_hints (diff) | |
download | frr-05e915984c641d59b4d4b0e83c1f301de4cba460.tar.xz frr-05e915984c641d59b4d4b0e83c1f301de4cba460.zip |
lib: remove unused vector_copy()
Not used anywhere in FRR, kill it.
Signed-off-by: David Lamparter <equinox@opensourcerouting.org>
Diffstat (limited to 'lib/vector.h')
-rw-r--r-- | lib/vector.h | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/lib/vector.h b/lib/vector.h index fcbc13257..534def4f3 100644 --- a/lib/vector.h +++ b/lib/vector.h @@ -51,7 +51,6 @@ static inline unsigned int vector_count(vector v) } extern void vector_free(vector v); -extern vector vector_copy(vector v); extern void *vector_lookup(vector, unsigned int); extern void *vector_lookup_ensure(vector, unsigned int); |