summaryrefslogtreecommitdiff
path: root/src/AS_DCP_internal.h
diff options
context:
space:
mode:
authorCarl Hetherington <cth@carlh.net>2016-01-11 11:11:33 +0000
committerCarl Hetherington <cth@carlh.net>2019-12-03 16:44:08 +0100
commit5174e4a85b8e6b1d5e34b711706022741e898ab9 (patch)
treed82694f2a126af8f64465fb2e1b1edf2e1677ff3 /src/AS_DCP_internal.h
parent6eff475f66b0ea1bbc6a11538d7ed636699c9144 (diff)
Fix unnecessary const qualifiers on return values.
Diffstat (limited to 'src/AS_DCP_internal.h')
-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 e98aac8..6b87b02 100755
--- a/src/AS_DCP_internal.h
+++ b/src/AS_DCP_internal.h
@@ -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);
};