From 31bf59cd2f80d911da99481ce8935aa8d6a1b70e Mon Sep 17 00:00:00 2001 From: richonguzman Date: Fri, 17 May 2024 18:47:45 -0400 Subject: [PATCH] testing --- src/ax25_utils.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/src/ax25_utils.cpp b/src/ax25_utils.cpp index 5d41d99..df0d0a7 100644 --- a/src/ax25_utils.cpp +++ b/src/ax25_utils.cpp @@ -80,6 +80,7 @@ namespace AX25_Utils { std::string intToBinaryString(uint8_t value, uint8_t bitLength) { std::string result = ""; + //result.reserve(bitLength); for (int i = bitLength - 1; i >= 0; i--) { result += ((value >> i) & 1) ? '1' : '0'; }