diff options
| author | v-junyli <[email protected]> | 2025-07-03 17:05:55 -0700 |
|---|---|---|
| committer | GitHub <[email protected]> | 2025-07-03 17:05:55 -0700 |
| commit | bf031504a51bf67e33e8280ef51d2189c434f04a (patch) | |
| tree | 3b0dcd4a84effe2d19adcce6153ab15097b07efe | |
| parent | fbfe31e6e01a5f6da21b255b91fc1d1407b81c9b (diff) | |
| parent | 0d7d36bb12159255dcdddb93f809d57c92fa90fe (diff) | |
Merge pull request #1304 from joe-spall/main
Fixes SpbTestTool build by tagging parameter as unreferenced
| -rw-r--r-- | exclusions.csv | 1 | ||||
| -rw-r--r-- | spb/SpbTestTool/exe/command.h | 24 |
2 files changed, 24 insertions, 1 deletions
diff --git a/exclusions.csv b/exclusions.csv index 1a6884f7..63d5e24a 100644 --- a/exclusions.csv +++ b/exclusions.csv @@ -6,7 +6,6 @@ network\trans\WFPSampler,Debug|ARM64,,22621,Only NI: Only ARM: Fails to build on prm,*,,22621,Only NI: Not supported on NI. powerlimit\plclient,*,,22621,Only NI: Not supported on NI. powerlimit\plpolicy,*,,22621,Only NI: Not supported on NI. -spb\spbtesttool,*,,26100,"failure introduced in VS17.14, suppressed until fix" general\pcidrv,*,,26100,"failure introduced in VS17.14, suppressed until fix" serial\serial,*,,26100,"failure introduced in VS17.14, suppressed until fix" network\wlan\wdi,*,,26100,"failure introduced in VS17.14, suppressed until fix" diff --git a/spb/SpbTestTool/exe/command.h b/spb/SpbTestTool/exe/command.h index 5e2633bd..d3f887b0 100644 --- a/spb/SpbTestTool/exe/command.h +++ b/spb/SpbTestTool/exe/command.h @@ -183,6 +183,8 @@ public: _In_opt_ string Tag ) : CCommand("open", Parameters) { + UNREFERENCED_PARAMETER(Tag); + return; } @@ -208,6 +210,8 @@ public: _In_opt_ string Tag ) : CCommand("close", Parameters) { + UNREFERENCED_PARAMETER(Tag); + return; } @@ -233,6 +237,8 @@ public: _In_opt_ string Tag ) : CCommand("lock", Parameters) { + UNREFERENCED_PARAMETER(Tag); + return; } @@ -258,6 +264,8 @@ public: _In_opt_ string Tag ) : CCommand("unlock", Parameters) { + UNREFERENCED_PARAMETER(Tag); + return; } @@ -283,6 +291,8 @@ public: _In_opt_ string Tag ) : CCommand("lockconn", Parameters) { + UNREFERENCED_PARAMETER(Tag); + return; } @@ -308,6 +318,8 @@ public: _In_opt_ string Tag ) : CCommand("unlockconn", Parameters) { + UNREFERENCED_PARAMETER(Tag); + return; } @@ -335,6 +347,8 @@ public: _In_opt_ string Tag ) : CCommand("read", Parameters) { + UNREFERENCED_PARAMETER(Tag); + return; } @@ -392,6 +406,8 @@ public: _In_opt_ string Tag ) : CCommand("write", Parameters) { + UNREFERENCED_PARAMETER(Tag); + return; } @@ -446,6 +462,8 @@ public: _In_opt_ string Tag ) : CCommand("writeread", Parameters) { + UNREFERENCED_PARAMETER(Tag); + WriteBuffer = NULL; return; } @@ -524,6 +542,8 @@ public: _In_opt_ string Tag ) : CCommand("fullduplex", Parameters) { + UNREFERENCED_PARAMETER(Tag); + WriteBuffer = NULL; return; } @@ -597,6 +617,8 @@ public: _In_opt_ string Tag ) : CCommand("signal", Parameters) { + UNREFERENCED_PARAMETER(Tag); + return; } @@ -622,6 +644,8 @@ public: _In_opt_ string Tag ) : CCommand("waitoninterrupt", Parameters) { + UNREFERENCED_PARAMETER(Tag); + return; } |
