mirror of
https://github.com/Microsoft/calculator.git
synced 2025-07-05 20:51:09 -07:00
Comment out unused variable (#2347)
With the 17.14 release of Visual Studio 2022, I see the following error: ``` ...\src\GraphingImpl\Mocks\Graph.h(47,47): warning C4100: 'variableName': unreferenced parameter [...\src\GraphingImpl\GraphingImpl.vcxproj ... ...\src\GraphingImpl\Mocks\Graph.h(47,47): error C2220: the following warning is treated as an error [...\src\GraphingImpl\GraphingImpl.vcxproj ``` Comment out the unused variable to resolve this.
This commit is contained in:
parent
b061b6be16
commit
544e7a5dd3
1 changed files with 1 additions and 1 deletions
|
@ -44,7 +44,7 @@ namespace MockGraphingImpl
|
|||
return m_variables;
|
||||
}
|
||||
|
||||
virtual void SetArgValue(std::wstring variableName, double /*value*/)
|
||||
virtual void SetArgValue(std::wstring /*variableName*/, double /*value*/)
|
||||
{
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue