summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorCarl Hetherington <cth@carlh.net>2016-01-11 11:11:33 +0000
committerCarl Hetherington <cth@carlh.net>2016-01-14 23:01:39 +0000
commitdbc44993aa2e68ccec4ab89080a4e48d495723b6 (patch)
tree3ceff59141ab14f40d84887b6875469f26f632c5 /src
parenta4871f415a50d5e3158fc3c4d2ee74f2b04f84db (diff)
Fix unnecessary const qualifiers on return values.
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 3f60b60..cf45cb4 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);
};