1
0
Fork 0
mirror of https://gitlab.alpinelinux.org/alpine/aports.git synced 2025-07-15 12:15:22 +03:00
aports/testing/py3-arcus/protobuf-31.patch
2025-06-12 10:18:47 +00:00

13 lines
406 B
Diff

diff --git a/src/PythonMessage.cpp b/src/PythonMessage.cpp
index dd0fe90..efe582d 100644
--- a/src/PythonMessage.cpp
+++ b/src/PythonMessage.cpp
@@ -32,7 +32,7 @@ PythonMessage::~PythonMessage()
std::string Arcus::PythonMessage::getTypeName() const
{
- return _message->GetTypeName();
+ return std::string(_message->GetTypeName());
}
MessagePtr Arcus::PythonMessage::getSharedMessage() const