summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCarl Hetherington <cth@carlh.net>2020-04-06 20:06:56 +0200
committerCarl Hetherington <cth@carlh.net>2020-12-26 21:36:29 +0100
commit9af0fb9e18d1d5285ad3b3aff28721eb0708a395 (patch)
tree6ebffb494fc2e1ebe93d7e192774558351f61bb7
parent6978a5b91c46ff1b4b70d81e30eebc848093e08d (diff)
Remove const from return types in cases where it doesn't
have any meaning.
-rwxr-xr-xsrc/AS_DCP_internal.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/AS_DCP_internal.h b/src/AS_DCP_internal.h
index 1df4936..097c989 100755
--- a/src/AS_DCP_internal.h
+++ b/src/AS_DCP_internal.h
@@ -196,8 +196,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);
};