Fix unnecessary const qualifiers on return values.
[asdcplib-cth.git] / src / AS_DCP_internal.h
index 3f60b601d876b19b9b3eb739fb9ae7b7848c4529..cf45cb4fd01baa12e7683d5e7bdb387e73eb3187 100755 (executable)
@@ -170,8 +170,8 @@ namespace ASDCP
       ~KLReader() {}
 
       inline const byte_t* Key() { return m_KeyBuf; }
-      inline const ui64_t  Length() { return m_ValueLength; }
-      inline const ui64_t  KLLength() { return m_KLLength; }
+      inline ui64_t  Length() { return m_ValueLength; }
+      inline ui64_t  KLLength() { return m_KLLength; }
 
       Result_t ReadKLFromFile(Kumu::FileReader& Reader);
     };