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
e60d7bc2
Commit
e60d7bc2
authored
May 26, 2018
by
Dominik Charousset
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fix typos
parent
052387e7
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
2 deletions
+2
-2
libcaf_core/caf/sum_type.hpp
libcaf_core/caf/sum_type.hpp
+2
-2
No files found.
libcaf_core/caf/sum_type.hpp
View file @
e60d7bc2
...
...
@@ -62,7 +62,7 @@ detail::enable_if_t<SumType<U>(), const T&> get(const U& x) {
using
namespace
detail
;
using
trait
=
sum_type_access
<
U
>
;
int_token
<
tl_index_where
<
typename
trait
::
types
,
tbind
<
is_same_ish
,
T
>::
template
type
>
::
x
>
token
;
tbind
<
is_same_ish
,
T
>::
template
type
>
::
value
>
token
;
// Silence compiler error about "binding to unrelated types" such as
// 'signed char' to 'char' (which is obvious bullshit).
return
reinterpret_cast
<
const
T
&>
(
trait
::
get
(
x
,
token
));
...
...
@@ -91,7 +91,7 @@ detail::enable_if_t<SumType<U>(), const T*> get_if(const U* x) {
int_token
<
tl_index_where
<
typename
trait
::
types
,
tbind
<
is_same_ish
,
T
>::
template
type
>
::
value
>
;
token_type
token
;
static_assert
(
token_type
::
x
!=
-
1
,
"T is not part of the sum type"
);
static_assert
(
token_type
::
value
!=
-
1
,
"T is not part of the sum type"
);
return
trait
::
is
(
*
x
,
token
)
?
&
trait
::
get
(
*
x
,
token
)
:
nullptr
;
}
...
...
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