Fix unnecessary const qualifiers on return values.
authorCarl Hetherington <cth@carlh.net>
Mon, 11 Jan 2016 11:11:33 +0000 (11:11 +0000)
committerCarl Hetherington <cth@carlh.net>
Thu, 14 Jan 2016 23:01:39 +0000 (23:01 +0000)
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);
     };