Update to const function to align with the internal repo

This commit is contained in:
Han Zhang 2025-01-23 13:16:32 +08:00
commit f2a6ed115a
2 changed files with 2 additions and 2 deletions

View file

@ -29,7 +29,7 @@ namespace MockGraphingImpl
return std::nullopt; return std::nullopt;
} }
HRESULT GetInitializationError() HRESULT GetInitializationError() const
{ {
return S_OK; return S_OK;
} }

View file

@ -18,7 +18,7 @@ namespace Graphing
virtual std::optional<std::vector<std::shared_ptr<IEquation>>> TryInitialize(const IExpression* graphingExp = nullptr) = 0; 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; virtual IGraphingOptions& GetOptions() = 0;