mirror of
https://github.com/shadps4-emu/ext-cryptopp.git
synced 2024-11-23 09:59:42 +00:00
Made MeterFilter Get*() functions const
This commit is contained in:
parent
25d27fffa6
commit
9033451abd
@ -253,10 +253,10 @@ public:
|
||||
{CRYPTOPP_UNUSED(parameters); ResetMeter();}
|
||||
|
||||
lword GetCurrentMessageBytes() const {return m_currentMessageBytes;}
|
||||
lword GetTotalBytes() {return m_totalBytes;}
|
||||
unsigned int GetCurrentSeriesMessages() {return m_currentSeriesMessages;}
|
||||
unsigned int GetTotalMessages() {return m_totalMessages;}
|
||||
unsigned int GetTotalMessageSeries() {return m_totalMessageSeries;}
|
||||
lword GetTotalBytes() const {return m_totalBytes;}
|
||||
unsigned int GetCurrentSeriesMessages() const {return m_currentSeriesMessages;}
|
||||
unsigned int GetTotalMessages() const {return m_totalMessages;}
|
||||
unsigned int GetTotalMessageSeries() const {return m_totalMessageSeries;}
|
||||
|
||||
byte * CreatePutSpace(size_t &size)
|
||||
{return AttachedTransformation()->CreatePutSpace(size);}
|
||||
|
Loading…
Reference in New Issue
Block a user