We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
In ExclusivePublication.h channelStatus() is defined as both const and non const method:
ExclusivePublication.h
channelStatus()
But it is implemented only as const method in ExclusivePublication.cpp: https://github.com/real-logic/aeron/blob/master/aeron-client/src/main/cpp/ExclusivePublication.cpp#L96
ExclusivePublication.cpp
This can lead to linker errors like this one:
undefined reference to 'aeron::ExclusivePublication::channelStatus()'
This was introduced in: d90f3c0#diff-42799ad76422e95b191febdf62b38699
The text was updated successfully, but these errors were encountered:
Successfully merging a pull request may close this issue.
In
ExclusivePublication.h
channelStatus()
is defined as both const and non const method:But it is implemented only as const method in
ExclusivePublication.cpp
: https://github.com/real-logic/aeron/blob/master/aeron-client/src/main/cpp/ExclusivePublication.cpp#L96This can lead to linker errors like this one:
This was introduced in: d90f3c0#diff-42799ad76422e95b191febdf62b38699
The text was updated successfully, but these errors were encountered: