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
655a7022
Commit
655a7022
authored
Sep 03, 2012
by
Dominik Charousset
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
fixed argument type of match_expr::can_invoke
parent
2df44f71
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
1 addition
and
4 deletions
+1
-4
cppa/match_expr.hpp
cppa/match_expr.hpp
+1
-4
No files found.
cppa/match_expr.hpp
View file @
655a7022
...
...
@@ -643,7 +643,7 @@ class match_expr {
return
_invoke
(
tmp
);
}
bool
can_invoke
(
any_tuple
const
tup
)
{
bool
can_invoke
(
const
any_tuple
&
tup
)
{
auto
&
type_token
=
*
(
tup
.
type_token
());
eval_order
token
;
std
::
uint64_t
tmp
=
0
;
...
...
@@ -673,7 +673,6 @@ class match_expr {
tuple_type
;
// applies implicit conversions etc
tuple_type
tup
{
std
::
forward
<
Args
>
(
args
)...};
auto
&
type_token
=
typeid
(
typename
tuple_type
::
types
);
auto
enabled_begin
=
get_cache_entry
(
&
type_token
,
tup
);
...
...
@@ -730,8 +729,6 @@ class match_expr {
}
};
inline
partial_function
as_partial_function
()
const
{
return
{
partial_function
::
impl_ptr
{
new
pfun_impl
(
*
this
)}};
}
...
...
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