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:
Jeroen Ketema 2025-06-24 10:48:41 +02:00 committed by GitHub
parent b061b6be16
commit 544e7a5dd3
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

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