This is an automated email from the ASF dual-hosted git repository.
bbender pushed a commit to branch develop
in repository https://gitbox.apache.org/repos/asf/geode-native.git
The following commit(s) were added to refs/heads/develop by this push:
new 804209c2e GEODE-10382: Fix Windows build in CI pipeline (#975)
804209c2e is described below
commit 804209c2e7f244058e248b831764f855f541be2e
Author: Blake Bender <[email protected]>
AuthorDate: Thu Jun 16 10:51:22 2022 -0700
GEODE-10382: Fix Windows build in CI pipeline (#975)
* GEODE-10392: Remove unreferenced local variable (Windows build warning
due to new compiler)
---
cppcache/src/TcrMessage.cpp | 1 -
1 file changed, 1 deletion(-)
diff --git a/cppcache/src/TcrMessage.cpp b/cppcache/src/TcrMessage.cpp
index 0b2308238..eb28235b0 100644
--- a/cppcache/src/TcrMessage.cpp
+++ b/cppcache/src/TcrMessage.cpp
@@ -3216,7 +3216,6 @@ TcrMessageHelper::ChunkObjectType
TcrMessageHelper::readChunkPartHeader(
msg.setMessageType(TcrMessage::EXCEPTION);
return ChunkObjectType::EXCEPTION;
} else {
- char exMsg[256];
throw MessageException(
std::string("TcrMessageHelper::readChunkPartHeader: ") + methodName +
": cannot handle java serializable object from server");