Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
A
actor-incubator
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
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-incubator
Commits
61549251
Unverified
Commit
61549251
authored
May 21, 2020
by
Dominik Charousset
Committed by
GitHub
May 21, 2020
Browse files
Options
Browse Files
Download
Plain Diff
Merge pull request #70
Silence unused parameter warnings
parents
e1060543
4bb00349
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
2 deletions
+3
-2
libcaf_net/caf/net/doorman.hpp
libcaf_net/caf/net/doorman.hpp
+3
-2
No files found.
libcaf_net/caf/net/doorman.hpp
View file @
61549251
...
...
@@ -90,7 +90,8 @@ public:
}
template
<
class
Parent
>
void
resolve
(
Parent
&
,
const
uri
&
locator
,
const
actor
&
listener
)
{
void
resolve
(
Parent
&
,
[[
maybe_unused
]]
const
uri
&
locator
,
const
actor
&
listener
)
{
CAF_LOG_ERROR
(
"doorman called to resolve"
<<
CAF_ARG
(
locator
));
anon_send
(
listener
,
resolve_atom_v
,
"doormen cannot resolve paths"
);
}
...
...
@@ -116,7 +117,7 @@ public:
CAF_LOG_ERROR
(
"doorman received timeout"
<<
CAF_ARG
(
tag
)
<<
CAF_ARG
(
id
));
}
void
handle_error
(
sec
err
)
{
void
handle_error
(
[[
maybe_unused
]]
sec
err
)
{
CAF_LOG_ERROR
(
"doorman encounterd error: "
<<
err
);
}
...
...
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