summaryrefslogtreecommitdiffstats
path: root/ipc/ipc_message_impl_macros.h
diff options
context:
space:
mode:
Diffstat (limited to 'ipc/ipc_message_impl_macros.h')
-rw-r--r--ipc/ipc_message_impl_macros.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/ipc/ipc_message_impl_macros.h b/ipc/ipc_message_impl_macros.h
index f9eede9..e2325a5 100644
--- a/ipc/ipc_message_impl_macros.h
+++ b/ipc/ipc_message_impl_macros.h
@@ -97,7 +97,7 @@
#define IPC_ASYNC_MESSAGE_DTOR_AND_LOG(msg_class) \
msg_class::~msg_class() {} \
\
- void msg_class::Log(const Message* msg, std::wstring* l) { \
+ void msg_class::Log(const Message* msg, std::string* l) { \
Param p; \
if (Read(msg, &p)) \
IPC::LogParam(p, l); \
@@ -198,7 +198,7 @@
#define IPC_SYNC_MESSAGE_DTOR_AND_LOG(msg_class) \
msg_class::~msg_class() {} \
\
- void msg_class::Log(const Message* msg, std::wstring* l) { \
+ void msg_class::Log(const Message* msg, std::string* l) { \
if (msg->is_sync()) { \
TupleTypes<SendParam>::ValueTuple p; \
if (ReadSendParam(msg, &p)) \