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
2fbb85b5
Commit
2fbb85b5
authored
Apr 29, 2016
by
Dominik Charousset
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Add operator-> to `param`
parent
2cc11799
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
6 additions
and
0 deletions
+6
-0
libcaf_core/caf/param.hpp
libcaf_core/caf/param.hpp
+6
-0
No files found.
libcaf_core/caf/param.hpp
View file @
2fbb85b5
...
@@ -63,6 +63,11 @@ public:
...
@@ -63,6 +63,11 @@ public:
return
*
x_
;
return
*
x_
;
}
}
const
T
*
operator
->
()
const
{
return
x_
;
}
/// Detaches the value if needed and returns a mutable reference to it.
T
&
get_mutable
()
{
T
&
get_mutable
()
{
if
(
flag_
==
shared_access
)
{
if
(
flag_
==
shared_access
)
{
auto
cpy
=
new
T
(
get
());
auto
cpy
=
new
T
(
get
());
...
@@ -72,6 +77,7 @@ public:
...
@@ -72,6 +77,7 @@ public:
return
*
x_
;
return
*
x_
;
}
}
/// Moves the value out of the `param`.
T
&&
move
()
{
T
&&
move
()
{
return
std
::
move
(
get_mutable
());
return
std
::
move
(
get_mutable
());
}
}
...
...
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