Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
openfpm_io
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Model registry
Operate
Environments
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Sbalzarini Lab
Software
Parallel Computing
OpenFPM
openfpm_io
Commits
bb27fd90
Commit
bb27fd90
authored
5 years ago
by
Pietro Incardona
Browse files
Options
Downloads
Patches
Plain Diff
Fixing compilation on Scientific linux
parent
31e99393
No related branches found
Branches containing commit
No related tags found
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
src/CSVWriter/CSVWriter.hpp
+2
-2
2 additions, 2 deletions
src/CSVWriter/CSVWriter.hpp
with
2 additions
and
2 deletions
src/CSVWriter/CSVWriter.hpp
+
2
−
2
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
"
;
}
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment