From 63e3867073d08cba20fd15ddb70219045f251bc2 Mon Sep 17 00:00:00 2001 From: Johannes Lorenz Date: Sun, 23 Mar 2025 22:39:03 +0100 Subject: [PATCH] Make m_startRecordTimeOffset const --- include/SampleRecordHandle.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/SampleRecordHandle.h b/include/SampleRecordHandle.h index 6f67625b9..a36d3dd6b 100644 --- a/include/SampleRecordHandle.h +++ b/include/SampleRecordHandle.h @@ -72,7 +72,7 @@ private: // The offset from the start of m_track that the record has // started from. - TimePos m_startRecordTimeOffset; + const TimePos m_startRecordTimeOffset; } ;