Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

msg/AsyncMessenger: add const to function #10114

Merged
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
2 changes: 1 addition & 1 deletion src/msg/async/AsyncMessenger.cc
Expand Up @@ -620,7 +620,7 @@ void AsyncMessenger::mark_down(const entity_addr_t& addr)
lock.Unlock();
}

int AsyncMessenger::get_proto_version(int peer_type, bool connect)
int AsyncMessenger::get_proto_version(int peer_type, bool connect) const
{
int my_type = my_inst.name.type();

Expand Down
2 changes: 1 addition & 1 deletion src/msg/async/AsyncMessenger.h
Expand Up @@ -388,7 +388,7 @@ class AsyncMessenger : public SimplePolicyMessenger {
* a peer protocol (if it matches our own), the protocol version for the
* peer (if we're connecting), or our protocol version (if we're accepting).
*/
int get_proto_version(int peer_type, bool connect);
int get_proto_version(int peer_type, bool connect) const;

/**
* Fill in the address and peer type for the local connection, which
Expand Down