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
0867f98c
Unverified
Commit
0867f98c
authored
Aug 23, 2018
by
Dominik Charousset
Committed by
GitHub
Aug 23, 2018
Browse files
Options
Browse Files
Download
Plain Diff
Merge pull request #748
Fix pedantic compiler warnings
parents
42b0209a
49f4fc31
Changes
4
Show whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
6 additions
and
5 deletions
+6
-5
libcaf_core/src/make_config_option.cpp
libcaf_core/src/make_config_option.cpp
+3
-3
libcaf_core/src/raise_error.cpp
libcaf_core/src/raise_error.cpp
+1
-0
libcaf_io/src/default_multiplexer.cpp
libcaf_io/src/default_multiplexer.cpp
+1
-1
libcaf_io/src/instance.cpp
libcaf_io/src/instance.cpp
+1
-1
No files found.
libcaf_core/src/make_config_option.cpp
View file @
0867f98c
...
@@ -118,11 +118,11 @@ meta_state ms_res_meta{
...
@@ -118,11 +118,11 @@ meta_state ms_res_meta{
namespace
detail
{
namespace
detail
{
DEFAULT_META
(
atom_value
)
;
DEFAULT_META
(
atom_value
)
DEFAULT_META
(
size_t
)
;
DEFAULT_META
(
size_t
)
DEFAULT_META
(
string
)
;
DEFAULT_META
(
string
)
config_option
::
meta_state
bool_meta_state
{
config_option
::
meta_state
bool_meta_state
{
bool_check
,
bool_store
,
bool_get
,
detail
::
type_name
<
bool
>
()
bool_check
,
bool_store
,
bool_get
,
detail
::
type_name
<
bool
>
()
...
...
libcaf_core/src/raise_error.cpp
View file @
0867f98c
...
@@ -24,6 +24,7 @@ namespace caf {
...
@@ -24,6 +24,7 @@ namespace caf {
namespace
detail
{
namespace
detail
{
void
log_cstring_error
(
const
char
*
cstring
)
{
void
log_cstring_error
(
const
char
*
cstring
)
{
CAF_IGNORE_UNUSED
(
cstring
);
CAF_LOG_ERROR
(
cstring
);
CAF_LOG_ERROR
(
cstring
);
}
}
...
...
libcaf_io/src/default_multiplexer.cpp
View file @
0867f98c
...
@@ -712,7 +712,7 @@ default_multiplexer::new_datagram_servant_for_endpoint(native_socket fd,
...
@@ -712,7 +712,7 @@ default_multiplexer::new_datagram_servant_for_endpoint(native_socket fd,
auto
ds
=
new_datagram_servant
(
fd
);
auto
ds
=
new_datagram_servant
(
fd
);
ds
->
add_endpoint
(
ep
,
ds
->
hdl
());
ds
->
add_endpoint
(
ep
,
ds
->
hdl
());
return
ds
;
return
ds
;
}
;
}
expected
<
datagram_servant_ptr
>
expected
<
datagram_servant_ptr
>
default_multiplexer
::
new_remote_udp_endpoint
(
const
std
::
string
&
host
,
default_multiplexer
::
new_remote_udp_endpoint
(
const
std
::
string
&
host
,
...
...
libcaf_io/src/instance.cpp
View file @
0867f98c
...
@@ -212,7 +212,7 @@ bool instance::handle(execution_unit* ctx, new_datagram_msg& dm,
...
@@ -212,7 +212,7 @@ bool instance::handle(execution_unit* ctx, new_datagram_msg& dm,
if
(
!
callee_
.
deliver_pending
(
ctx
,
ep
,
false
))
if
(
!
callee_
.
deliver_pending
(
ctx
,
ep
,
false
))
return
err
();
return
err
();
return
true
;
return
true
;
}
;
}
void
instance
::
handle_heartbeat
(
execution_unit
*
ctx
)
{
void
instance
::
handle_heartbeat
(
execution_unit
*
ctx
)
{
CAF_LOG_TRACE
(
""
);
CAF_LOG_TRACE
(
""
);
...
...
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