Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
A
Actor Framework
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Operations
Operations
Metrics
Environments
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
cpp-libs
Actor Framework
Commits
50d5f00c
Commit
50d5f00c
authored
Feb 04, 2020
by
Dominik Charousset
Browse files
Options
Browse Files
Download
Plain Diff
Merge pull request #1039
parents
d68acc5d
5a34f527
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
5 additions
and
0 deletions
+5
-0
libcaf_core/caf/system_messages.hpp
libcaf_core/caf/system_messages.hpp
+5
-0
No files found.
libcaf_core/caf/system_messages.hpp
View file @
50d5f00c
...
@@ -43,6 +43,11 @@ struct exit_msg {
...
@@ -43,6 +43,11 @@ struct exit_msg {
error
reason
;
error
reason
;
};
};
/// @relates exit_msg
inline
bool
operator
==
(
const
exit_msg
&
x
,
const
exit_msg
&
y
)
noexcept
{
return
x
.
source
==
y
.
source
&&
x
.
reason
==
y
.
reason
;
}
/// @relates exit_msg
/// @relates exit_msg
template
<
class
Inspector
>
template
<
class
Inspector
>
typename
Inspector
::
result_type
inspect
(
Inspector
&
f
,
exit_msg
&
x
)
{
typename
Inspector
::
result_type
inspect
(
Inspector
&
f
,
exit_msg
&
x
)
{
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment