diff options
| author | Carl Hetherington <cth@carlh.net> | 2020-04-06 20:06:56 +0200 |
|---|---|---|
| committer | Carl Hetherington <cth@carlh.net> | 2020-12-26 21:36:29 +0100 |
| commit | 9af0fb9e18d1d5285ad3b3aff28721eb0708a395 (patch) | |
| tree | 6ebffb494fc2e1ebe93d7e192774558351f61bb7 | |
| parent | 6978a5b91c46ff1b4b70d81e30eebc848093e08d (diff) | |
Remove const from return types in cases where it doesn't
have any meaning.
| -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 1df4936..097c989 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); }; |
