Update CalculatorHistory.h

This commit is contained in:
Alfonso Gregory 2021-07-14 20:39:20 -04:00 committed by GitHub
commit 0bc9602ecd
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -23,7 +23,7 @@ namespace CalculationManager
class CalculatorHistory : public IHistoryDisplay class CalculatorHistory : public IHistoryDisplay
{ {
public: public:
CalculatorHistory(const size_t maxSize); CalculatorHistory(const unsigned int maxSize);
unsigned int AddToHistory( unsigned int AddToHistory(
_In_ std::shared_ptr<std::vector<std::pair<std::wstring, int>>> const& spTokens, _In_ std::shared_ptr<std::vector<std::pair<std::wstring, int>>> const& spTokens,
_In_ std::shared_ptr<std::vector<std::shared_ptr<IExpressionCommand>>> const& spCommands, _In_ std::shared_ptr<std::vector<std::shared_ptr<IExpressionCommand>>> const& spCommands,