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
c1f9e44d
Commit
c1f9e44d
authored
Apr 02, 2023
by
Dominik Charousset
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fix build on GCC 9
parent
429d31f7
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
1 addition
and
1 deletion
+1
-1
libcaf_net/caf/net/dsl/config_base.hpp
libcaf_net/caf/net/dsl/config_base.hpp
+1
-1
No files found.
libcaf_net/caf/net/dsl/config_base.hpp
View file @
c1f9e44d
...
@@ -152,7 +152,7 @@ protected:
...
@@ -152,7 +152,7 @@ protected:
// Discard the data if `from` contained an error. Otherwise, transfer the
// Discard the data if `from` contained an error. Otherwise, transfer the
// SSL context over to the refined configuration.
// SSL context over to the refined configuration.
if
(
!
from
)
{
if
(
!
from
)
{
ptr
->
data
=
std
::
get
<
error
>
(
from
.
data
);
ptr
->
data
.
template
emplace
<
error
>(
std
::
get
<
error
>
(
from
.
data
)
);
}
else
if
(
auto
*
dst
=
ptr
->
as_has_ctx
())
{
}
else
if
(
auto
*
dst
=
ptr
->
as_has_ctx
())
{
if
(
const
auto
*
src
=
from
.
as_has_ctx
())
{
if
(
const
auto
*
src
=
from
.
as_has_ctx
())
{
dst
->
ctx
=
src
->
ctx
;
dst
->
ctx
=
src
->
ctx
;
...
...
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