diff options
| author | Carl Hetherington <cth@carlh.net> | 2012-07-16 19:43:03 +0100 |
|---|---|---|
| committer | Carl Hetherington <cth@carlh.net> | 2012-07-16 19:43:03 +0100 |
| commit | aa1ea57fbbfe775168dacceb707a1dc80dc02dae (patch) | |
| tree | 190af7a8ea03d9a0ea1fade70676d163c2f060f2 /asdcplib/src/AS_DCP_internal.h | |
| parent | d2149e1d5f1acf35fd96081c36a2f7ff6ca2f095 (diff) | |
Fix ADSCP warnings.
Diffstat (limited to 'asdcplib/src/AS_DCP_internal.h')
| -rwxr-xr-x | asdcplib/src/AS_DCP_internal.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/asdcplib/src/AS_DCP_internal.h b/asdcplib/src/AS_DCP_internal.h index 811a87c2..4c1507c8 100755 --- a/asdcplib/src/AS_DCP_internal.h +++ b/asdcplib/src/AS_DCP_internal.h @@ -110,9 +110,9 @@ namespace ASDCP KLReader() {} ~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 byte_t* Key() { return m_KeyBuf; } + inline ui64_t Length() { return m_ValueLength; } + inline ui64_t KLLength() { return m_KLLength; } Result_t ReadKLFromFile(Kumu::FileReader& Reader); }; |
