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
ad43e201
Commit
ad43e201
authored
Sep 06, 2022
by
Dominik Charousset
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Add missing type aliases to cow_vector
parent
3fcdd263
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
5 additions
and
1 deletion
+5
-1
libcaf_core/caf/cow_vector.hpp
libcaf_core/caf/cow_vector.hpp
+5
-1
No files found.
libcaf_core/caf/cow_vector.hpp
View file @
ad43e201
...
...
@@ -19,12 +19,16 @@ class cow_vector {
public:
// -- member types -----------------------------------------------------------
using
std_type
=
std
::
vector
<
T
>
;
using
value_type
=
T
;
using
std_type
=
std
::
vector
<
value_type
>
;
using
size_type
=
typename
std_type
::
size_type
;
using
const_iterator
=
typename
std_type
::
const_iterator
;
using
difference_type
=
typename
std_type
::
difference_type
;
using
const_reverse_iterator
=
typename
std_type
::
const_reverse_iterator
;
// -- constructors, destructors, and assignment operators --------------------
...
...
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