mirror of
https://github.com/Microsoft/calculator.git
synced 2025-08-20 21:33:10 -07:00
Update to const function to align with the internal repo
This commit is contained in:
parent
2b294c82db
commit
f2a6ed115a
2 changed files with 2 additions and 2 deletions
|
@ -29,7 +29,7 @@ namespace MockGraphingImpl
|
|||
return std::nullopt;
|
||||
}
|
||||
|
||||
HRESULT GetInitializationError()
|
||||
HRESULT GetInitializationError() const
|
||||
{
|
||||
return S_OK;
|
||||
}
|
||||
|
|
|
@ -18,7 +18,7 @@ namespace Graphing
|
|||
|
||||
virtual std::optional<std::vector<std::shared_ptr<IEquation>>> TryInitialize(const IExpression* graphingExp = nullptr) = 0;
|
||||
|
||||
virtual HRESULT GetInitializationError() = 0;
|
||||
virtual HRESULT GetInitializationError() const = 0;
|
||||
|
||||
virtual IGraphingOptions& GetOptions() = 0;
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue