summaryrefslogtreecommitdiffstats
path: root/lib/vector.h
diff options
context:
space:
mode:
authorDavid Lamparter <equinox@opensourcerouting.org>2024-07-21 18:46:58 +0200
committerDonald Sharp <sharpd@nvidia.com>2024-07-31 14:08:53 +0200
commit05e915984c641d59b4d4b0e83c1f301de4cba460 (patch)
tree92808be60d0155f8890395e5a92055fd43d27c30 /lib/vector.h
parentMerge pull request #16496 from donaldsharp/topotest_hints (diff)
downloadfrr-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.h1
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);