diff options
| author | Carl Hetherington <cth@carlh.net> | 2020-04-06 20:06:56 +0200 |
|---|---|---|
| committer | Carl Hetherington <cth@carlh.net> | 2020-07-11 01:28:41 +0200 |
| commit | 31ace7591005675b514cc534762f91e576c69424 (patch) | |
| tree | 41a525a585d9161f2b10167ce07c90207ad7d1f4 /src | |
| parent | 8b3a282e00d907320123e450ac6faee29cfe0e4d (diff) | |
Remove const from return types in cases where it doesn't
have any meaning.
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 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); }; |
