diff options
| author | Carl Hetherington <cth@carlh.net> | 2016-01-11 11:11:33 +0000 |
|---|---|---|
| committer | Carl Hetherington <cth@carlh.net> | 2016-01-14 23:01:39 +0000 |
| commit | dbc44993aa2e68ccec4ab89080a4e48d495723b6 (patch) | |
| tree | 3ceff59141ab14f40d84887b6875469f26f632c5 /src | |
| parent | a4871f415a50d5e3158fc3c4d2ee74f2b04f84db (diff) | |
Fix unnecessary const qualifiers on return values.
Diffstat (limited to 'src')
| -rwxr-xr-x | src/AS_DCP_internal.h | 4 |
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); }; |
