Skip to content
Toggle navigation
P
Projects
G
Groups
S
Snippets
Help
FORMUS3IC_LAS3
/
embb
This project
Loading...
Sign in
Toggle navigation
Go to a project
Project
Repository
Issues
0
Merge Requests
0
Pipelines
Wiki
Members
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Commit
1b725190
authored
Mar 31, 2015
by
Tobias Fuchs
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
algorithms_cpp: fixed compiler error in gcc in partitioner
parent
4a15a669
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
1 deletions
+2
-1
algorithms_cpp/include/embb/algorithms/internal/partition-inl.h
+2
-1
No files found.
algorithms_cpp/include/embb/algorithms/internal/partition-inl.h
View file @
1b725190
...
@@ -67,7 +67,8 @@ template<typename RAI>
...
@@ -67,7 +67,8 @@ template<typename RAI>
const
ChunkDescriptor
<
RAI
>
const
ChunkDescriptor
<
RAI
>
BlockSizePartitioner
<
RAI
>::
operator
[](
BlockSizePartitioner
<
RAI
>::
operator
[](
size_t
const
&
index
)
const
{
size_t
const
&
index
)
const
{
typedef
std
::
iterator_traits
<
RAI
>::
difference_type
difference_type
;
typedef
typename
std
::
iterator_traits
<
RAI
>::
difference_type
difference_type
;
RAI
first_new
(
first_
);
RAI
first_new
(
first_
);
first_new
+=
static_cast
<
difference_type
>
(
chunk_size_
*
index
);
first_new
+=
static_cast
<
difference_type
>
(
chunk_size_
*
index
);
RAI
last_new
(
first_new
);
RAI
last_new
(
first_new
);
...
...
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