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
04c83d3c
Commit
04c83d3c
authored
Jan 17, 2012
by
neverlord
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
maintenance
parent
36fcc689
Changes
6
Show whitespace changes
Inline
Side-by-side
Showing
6 changed files
with
1 addition
and
54 deletions
+1
-54
Makefile.am
Makefile.am
+0
-1
cppa.files
cppa.files
+0
-1
cppa/on.hpp
cppa/on.hpp
+0
-1
cppa/util.hpp
cppa/util.hpp
+0
-1
cppa/util/concat_type_lists.hpp
cppa/util/concat_type_lists.hpp
+0
-49
unit_testing/test__type_list.cpp
unit_testing/test__type_list.cpp
+1
-1
No files found.
Makefile.am
View file @
04c83d3c
...
@@ -173,7 +173,6 @@ nobase_library_include_HEADERS = \
...
@@ -173,7 +173,6 @@ nobase_library_include_HEADERS = \
cppa/util/callable_trait.hpp
\
cppa/util/callable_trait.hpp
\
cppa/util/comparable.hpp
\
cppa/util/comparable.hpp
\
cppa/util/compare_tuples.hpp
\
cppa/util/compare_tuples.hpp
\
cppa/util/concat_type_lists.hpp
\
cppa/util/conjunction.hpp
\
cppa/util/conjunction.hpp
\
cppa/util/default_deallocator.hpp
\
cppa/util/default_deallocator.hpp
\
cppa/util/disable_if.hpp
\
cppa/util/disable_if.hpp
\
...
...
cppa.files
View file @
04c83d3c
...
@@ -23,7 +23,6 @@ unit_testing/test__spawn.cpp
...
@@ -23,7 +23,6 @@ unit_testing/test__spawn.cpp
src/mock_scheduler.cpp
src/mock_scheduler.cpp
cppa/actor.hpp
cppa/actor.hpp
unit_testing/test__intrusive_ptr.cpp
unit_testing/test__intrusive_ptr.cpp
cppa/util/concat_type_lists.hpp
cppa/util/is_comparable.hpp
cppa/util/is_comparable.hpp
cppa/util/callable_trait.hpp
cppa/util/callable_trait.hpp
unit_testing/test__type_list.cpp
unit_testing/test__type_list.cpp
...
...
cppa/on.hpp
View file @
04c83d3c
...
@@ -46,7 +46,6 @@
...
@@ -46,7 +46,6 @@
#include "cppa/util/enable_if.hpp"
#include "cppa/util/enable_if.hpp"
#include "cppa/util/arg_match_t.hpp"
#include "cppa/util/arg_match_t.hpp"
#include "cppa/util/callable_trait.hpp"
#include "cppa/util/callable_trait.hpp"
#include "cppa/util/concat_type_lists.hpp"
#include "cppa/detail/boxed.hpp"
#include "cppa/detail/boxed.hpp"
#include "cppa/detail/unboxed.hpp"
#include "cppa/detail/unboxed.hpp"
...
...
cppa/util.hpp
View file @
04c83d3c
...
@@ -33,7 +33,6 @@
...
@@ -33,7 +33,6 @@
#include "cppa/util/callable_trait.hpp"
#include "cppa/util/callable_trait.hpp"
#include "cppa/util/compare_tuples.hpp"
#include "cppa/util/compare_tuples.hpp"
#include "cppa/util/concat_type_lists.hpp"
#include "cppa/util/conjunction.hpp"
#include "cppa/util/conjunction.hpp"
#include "cppa/util/disjunction.hpp"
#include "cppa/util/disjunction.hpp"
#include "cppa/util/enable_if.hpp"
#include "cppa/util/enable_if.hpp"
...
...
cppa/util/concat_type_lists.hpp
deleted
100644 → 0
View file @
36fcc689
/******************************************************************************\
* ___ __ *
* /\_ \ __/\ \ *
* \//\ \ /\_\ \ \____ ___ _____ _____ __ *
* \ \ \ \/\ \ \ '__`\ /'___\/\ '__`\/\ '__`\ /'__`\ *
* \_\ \_\ \ \ \ \L\ \/\ \__/\ \ \L\ \ \ \L\ \/\ \L\.\_ *
* /\____\\ \_\ \_,__/\ \____\\ \ ,__/\ \ ,__/\ \__/.\_\ *
* \/____/ \/_/\/___/ \/____/ \ \ \/ \ \ \/ \/__/\/_/ *
* \ \_\ \ \_\ *
* \/_/ \/_/ *
* *
* Copyright (C) 2011, 2012 *
* Dominik Charousset <dominik.charousset@haw-hamburg.de> *
* *
* This file is part of libcppa. *
* libcppa is free software: you can redistribute it and/or modify it under *
* the terms of the GNU Lesser General Public License as published by the *
* Free Software Foundation, either version 3 of the License *
* or (at your option) any later version. *
* *
* libcppa is distributed in the hope that it will be useful, *
* but WITHOUT ANY WARRANTY; without even the implied warranty of *
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. *
* See the GNU Lesser General Public License for more details. *
* *
* You should have received a copy of the GNU Lesser General Public License *
* along with libcppa. If not, see <http://www.gnu.org/licenses/>. *
\******************************************************************************/
#ifndef CONCAT_TYPE_LISTS_HPP
#define CONCAT_TYPE_LISTS_HPP
#include "cppa/util/type_list.hpp"
namespace
cppa
{
namespace
util
{
template
<
typename
ListA
,
typename
ListB
>
struct
concat_type_lists
;
template
<
typename
...
ListATypes
,
typename
...
ListBTypes
>
struct
concat_type_lists
<
util
::
type_list
<
ListATypes
...
>
,
util
::
type_list
<
ListBTypes
...
>>
{
typedef
util
::
type_list
<
ListATypes
...,
ListBTypes
...
>
type
;
};
}
}
// namespace cppa::util
#endif // CONCAT_TYPE_LISTS_HPP
unit_testing/test__type_list.cpp
View file @
04c83d3c
...
@@ -34,7 +34,7 @@ size_t test__type_list()
...
@@ -34,7 +34,7 @@ size_t test__type_list()
CPPA_CHECK
((
is_same
<
element_at
<
1
,
l1
>::
type
,
element_at
<
1
,
r1
>::
type
>::
value
));
CPPA_CHECK
((
is_same
<
element_at
<
1
,
l1
>::
type
,
element_at
<
1
,
r1
>::
type
>::
value
));
CPPA_CHECK
((
is_same
<
element_at
<
2
,
l1
>::
type
,
element_at
<
0
,
r1
>::
type
>::
value
));
CPPA_CHECK
((
is_same
<
element_at
<
2
,
l1
>::
type
,
element_at
<
0
,
r1
>::
type
>::
value
));
typedef
concat_type_lists
<
type_list
<
int
>
,
l1
>::
type
l2
;
typedef
tl_concat
<
type_list
<
int
>
,
l1
>::
type
l2
;
CPPA_CHECK
((
is_same
<
int
,
l2
::
head
>::
value
));
CPPA_CHECK
((
is_same
<
int
,
l2
::
head
>::
value
));
CPPA_CHECK
((
is_same
<
l1
,
l2
::
tail
>::
value
));
CPPA_CHECK
((
is_same
<
l1
,
l2
::
tail
>::
value
));
...
...
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