simulator does not compile for pchmura4 on gcc13 #5644

This commit is contained in:
rusefillc 2023-10-26 11:09:59 -04:00 committed by rusefillc
parent b7b477bc77
commit 81b31801c9
1 changed files with 2 additions and 2 deletions

View File

@ -20,7 +20,7 @@ static scaled_channel<uint32_t, TIME_PRECISION> packedTime;
// The list of logged fields lives in a separate file so it can eventually be tool-generated
#include "log_fields_generated.h"
static const uint16_t computeFieldsRecordLength() {
static constexpr uint16_t computeFieldsRecordLength() {
uint16_t recLength = 0;
for (size_t i = 0; i < efi::size(fields); i++) {
recLength += fields[i].getSize();
@ -47,7 +47,7 @@ void writeSdLogLine(Writer& bufferedWriter) {
binaryLogCount++;
}
static constexpr uint16_t recordLength = computeFieldsRecordLength();
static const uint16_t recordLength = computeFieldsRecordLength();
void writeFileHeader(Writer& outBuffer) {
char buffer[MLQ_HEADER_SIZE];