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
71d7e003
Commit
71d7e003
authored
Apr 12, 2012
by
neverlord
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
maintenance
parent
7c297747
Changes
3
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
132 additions
and
135 deletions
+132
-135
cppa/detail/abstract_tuple.hpp
cppa/detail/abstract_tuple.hpp
+0
-3
cppa/detail/tdata.hpp
cppa/detail/tdata.hpp
+5
-0
unit_testing/test__tuple.cpp
unit_testing/test__tuple.cpp
+127
-132
No files found.
cppa/detail/abstract_tuple.hpp
View file @
71d7e003
...
...
@@ -36,7 +36,6 @@
#include "cppa/config.hpp"
#include "cppa/ref_counted.hpp"
#include "cppa/type_value_pair.hpp"
#include "cppa/uniform_type_info.hpp"
#include "cppa/util/type_list.hpp"
...
...
@@ -166,8 +165,6 @@ class abstract_tuple : public ref_counted
inline
const_iterator
&
operator
*
()
{
return
*
this
;
}
//inline operator type_value_pair() const { return {type(), value()}; }
};
inline
const_iterator
begin
()
const
{
return
{
this
};
}
...
...
cppa/detail/tdata.hpp
View file @
71d7e003
...
...
@@ -185,6 +185,11 @@ struct tdata<>
inline
bool
operator
==
(
tdata
const
&
)
const
{
return
true
;
}
inline
tuple_impl_info
impl_type
()
const
{
return
statically_typed
;
}
};
template
<
bool
IsBoxed
,
bool
IsFunction
,
typename
Head
,
typename
T
>
...
...
unit_testing/test__tuple.cpp
View file @
71d7e003
This diff is collapsed.
Click to expand it.
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