Drop unneeded const-qualifier on return type (#396)

This commit is contained in:
Michał Janiszewski 2019-04-12 22:40:02 +02:00 коммит произвёл Howard Wolosky
Родитель f6f10444f7
Коммит afdda581a4
1 изменённых файлов: 1 добавлений и 1 удалений

Просмотреть файл

@ -38,7 +38,7 @@ namespace CalculationManager
void ClearHistory();
unsigned int AddItem(_In_ std::shared_ptr<HISTORYITEM> const &spHistoryItem);
bool RemoveItem(unsigned int uIdx);
const size_t MaxHistorySize() const { return m_maxHistorySize; }
size_t MaxHistorySize() const { return m_maxHistorySize; }
~CalculatorHistory(void);
private: