summaryrefslogtreecommitdiff
path: root/cpp/lib/common/framing/MethodContext.h
diff options
context:
space:
mode:
Diffstat (limited to 'cpp/lib/common/framing/MethodContext.h')
-rw-r--r--cpp/lib/common/framing/MethodContext.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/cpp/lib/common/framing/MethodContext.h b/cpp/lib/common/framing/MethodContext.h
index 1aa4be8f1e..46d2e064b5 100644
--- a/cpp/lib/common/framing/MethodContext.h
+++ b/cpp/lib/common/framing/MethodContext.h
@@ -50,7 +50,7 @@ struct MethodContext
: channelId(channel), out(output), requestId(request){}
/** \internal Channel on which the method is sent. */
- const ChannelId channelId;
+ ChannelId channelId;
/** Output handler for responses in this context */
OutputHandler* out;
@@ -58,7 +58,7 @@ struct MethodContext
/** \internal If we are in the context of processing an incoming request,
* this is the ID. Otherwise it is 0.
*/
- const RequestId requestId;
+ RequestId requestId;
};