mirror of
https://github.com/Microsoft/calculator.git
synced 2025-08-20 21:33:10 -07:00
Drop unneeded const-qualifier on return type (#396)
This commit is contained in:
parent
f6f10444f7
commit
afdda581a4
1 changed files with 1 additions and 1 deletions
|
@ -38,7 +38,7 @@ namespace CalculationManager
|
||||||
void ClearHistory();
|
void ClearHistory();
|
||||||
unsigned int AddItem(_In_ std::shared_ptr<HISTORYITEM> const &spHistoryItem);
|
unsigned int AddItem(_In_ std::shared_ptr<HISTORYITEM> const &spHistoryItem);
|
||||||
bool RemoveItem(unsigned int uIdx);
|
bool RemoveItem(unsigned int uIdx);
|
||||||
const size_t MaxHistorySize() const { return m_maxHistorySize; }
|
size_t MaxHistorySize() const { return m_maxHistorySize; }
|
||||||
~CalculatorHistory(void);
|
~CalculatorHistory(void);
|
||||||
|
|
||||||
private:
|
private:
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue