Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in
Toggle navigation
O
openfpm_io
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Locked Files
Issues
0
Issues
0
List
Boards
Labels
Service Desk
Milestones
Merge Requests
0
Merge Requests
0
Requirements
Requirements
List
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Security & Compliance
Security & Compliance
Dependency List
License Compliance
Operations
Operations
Environments
Analytics
Analytics
CI / CD
Code Review
Insights
Issue
Repository
Value Stream
Wiki
Wiki
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
openfpm
openfpm_io
Commits
bb27fd90
Commit
bb27fd90
authored
Sep 05, 2019
by
incardon
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fixing compilation on Scientific linux
parent
31e99393
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
2 deletions
+2
-2
src/CSVWriter/CSVWriter.hpp
src/CSVWriter/CSVWriter.hpp
+2
-2
No files found.
src/CSVWriter/CSVWriter.hpp
View file @
bb27fd90
...
...
@@ -183,7 +183,7 @@ class CSVWriter
csv_col
<
typename
v_prp
::
value_type
,
has_attributes
<
typename
v_prp
::
value_type
>::
value
>
col
(
str
);
// Iterate through all the vertex and create the vertex list
boost
::
mpl
::
for_each
<
boost
::
mpl
::
range_c
<
int
,
0
,
v_prp
::
value_type
::
max_prop
>
>
(
col
);
boost
::
mpl
::
for_each
_ref_host
<
boost
::
mpl
::
range_c
<
int
,
0
,
v_prp
::
value_type
::
max_prop
>
>
(
col
);
str
<<
"
\n
"
;
...
...
@@ -225,7 +225,7 @@ class CSVWriter
csv_prp
<
decltype
(
obj
)
>
c_prp
(
str
,
obj
);
// write the properties to the stream string
boost
::
mpl
::
for_each
<
boost
::
mpl
::
range_c
<
int
,
0
,
v_prp
::
value_type
::
max_prop
>
>
(
c_prp
);
boost
::
mpl
::
for_each
_ref_host
<
boost
::
mpl
::
range_c
<
int
,
0
,
v_prp
::
value_type
::
max_prop
>
>
(
c_prp
);
str
<<
"
\n
"
;
}
...
...
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