From cb17a29b4dedf1cb896c565eee6883977f20a8e2 Mon Sep 17 00:00:00 2001 From: Andrew Johnson Date: Wed, 19 Nov 2025 16:41:16 -0600 Subject: [PATCH] Delete unused static const array --- src/remote/codec.cpp | 12 ------------ 1 file changed, 12 deletions(-) diff --git a/src/remote/codec.cpp b/src/remote/codec.cpp index 3cb67a3..e5f7b3c 100644 --- a/src/remote/codec.cpp +++ b/src/remote/codec.cpp @@ -565,18 +565,6 @@ std::size_t AbstractCodec::alignedValue( return (value + k) & (~k); } -static const char PADDING_BYTES[] = -{ - static_cast(0xFF), - static_cast(0xFF), - static_cast(0xFF), - static_cast(0xFF), - static_cast(0xFF), - static_cast(0xFF), - static_cast(0xFF), - static_cast(0xFF) -}; - void AbstractCodec::startMessage( epics::pvData::int8 command,