Comment out unused variable

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:
Jeroen Ketema 2025-06-23 15:28:00 +02:00
commit 92aec17cf0
No known key found for this signature in database
GPG key ID: 0D28C783F1AAA17F

View file

@ -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*/)
{
}