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

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

commit 8de989df57a1524b4ffcd43a66ee24bf7bf468fc
Author: bneradt <[email protected]>
AuthorDate: Mon Sep 14 18:35:20 2020 -0500

    comment out unused spec in bwf_std.h
---
 code/include/swoc/bwf_std.h | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/code/include/swoc/bwf_std.h b/code/include/swoc/bwf_std.h
index 536b9d8..372de72 100644
--- a/code/include/swoc/bwf_std.h
+++ b/code/include/swoc/bwf_std.h
@@ -26,7 +26,7 @@ bwformat(swoc::BufferWriter &w, swoc::bwf::Spec const &spec, 
atomic<T> const &v)
 swoc::BufferWriter &bwformat(swoc::BufferWriter &w, swoc::bwf::Spec const 
&spec, error_code const &ec);
 
 template < size_t N >
-swoc::BufferWriter &bwformat(swoc::BufferWriter &w, swoc::bwf::Spec const& 
spec, bitset<N> const& bits) {
+swoc::BufferWriter &bwformat(swoc::BufferWriter &w, swoc::bwf::Spec const& /* 
spec */, bitset<N> const& bits) {
   for ( unsigned idx = 0 ; idx < N ; ++idx) {
     w.write(bits[idx] ? '1' : '0');
   }

Reply via email to