summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorCarl Hetherington <cth@carlh.net>2020-04-06 20:06:56 +0200
committerCarl Hetherington <cth@carlh.net>2020-07-11 01:28:41 +0200
commit31ace7591005675b514cc534762f91e576c69424 (patch)
tree41a525a585d9161f2b10167ce07c90207ad7d1f4 /src
parent8b3a282e00d907320123e450ac6faee29cfe0e4d (diff)
Remove const from return types in cases where it doesn't
have any meaning.
Diffstat (limited to 'src')
-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 7c1e74d..045e78f 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);
};