This is an automated email from the ASF dual-hosted git repository.

jbarrett 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 7edebdf  GEODE-4632: Fixes compile error on .NET.
7edebdf is described below

commit 7edebdf0f613934e9c3e5c159576db98131ec468
Author: Jacob Barrett <jbarr...@pivotal.io>
AuthorDate: Thu Feb 8 16:16:29 2018 +0000

    GEODE-4632: Fixes compile error on .NET.
---
 clicache/src/UserFunctionExecutionException.cpp | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/clicache/src/UserFunctionExecutionException.cpp 
b/clicache/src/UserFunctionExecutionException.cpp
index ec5d84d..74cd122 100644
--- a/clicache/src/UserFunctionExecutionException.cpp
+++ b/clicache/src/UserFunctionExecutionException.cpp
@@ -64,7 +64,7 @@ namespace Apache
         try
         {
           auto value = m_nativeptr->get()->getMessage();
-          return marshal_as<String^>(value->toString());
+          return marshal_as<String^>(value);
         }
         finally
         {
@@ -81,7 +81,7 @@ namespace Apache
         try
         {
           auto value = m_nativeptr->get()->getName();
-          return marshal_as<String^>(value->toString());
+          return marshal_as<String^>(value);
         }
         finally
         {

-- 
To stop receiving notification emails like this one, please contact
jbarr...@apache.org.

Reply via email to