This is an automated email from the ASF dual-hosted git repository.

bneradt pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/trafficserver-libswoc.git

commit f1c1c9d5c09c33eb69977d13636871d0132091a9
Author: Pavel Vazharov <[email protected]>
AuthorDate: Tue Jun 25 18:19:07 2024 +0300

    Remove unused `alloc` parameter in swoc/Vectray functionality (#11475)
---
 code/include/swoc/Vectray.h | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/code/include/swoc/Vectray.h b/code/include/swoc/Vectray.h
index e2e6485..eb53705 100644
--- a/code/include/swoc/Vectray.h
+++ b/code/include/swoc/Vectray.h
@@ -232,7 +232,7 @@ protected:
 
 template <typename T, size_t N, typename A> Vectray<T, N, A>::Vectray() {}
 
-template <typename T, size_t N, class A> Vectray<T, N, 
A>::Vectray(Vectray::size_type n, allocator_type const &alloc) : Vectray() {
+template <typename T, size_t N, class A> Vectray<T, N, 
A>::Vectray(Vectray::size_type n, allocator_type const &) : Vectray() {
   this->reserve(n);
   while (n-- > 0) {
     this->emplace_back();

Reply via email to