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
63f84d6c
Commit
63f84d6c
authored
Mar 28, 2017
by
incardon
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fixing Binary format
parent
f02a479f
Changes
4
Show whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
3 additions
and
22 deletions
+3
-22
src/VTKWriter/VTKWriter.hpp
src/VTKWriter/VTKWriter.hpp
+0
-4
src/VTKWriter/VTKWriter_graph_util.hpp
src/VTKWriter/VTKWriter_graph_util.hpp
+0
-15
src/VTKWriter/VTKWriter_grids_util.hpp
src/VTKWriter/VTKWriter_grids_util.hpp
+1
-1
src/VTKWriter/is_vtk_writable.hpp
src/VTKWriter/is_vtk_writable.hpp
+2
-2
No files found.
src/VTKWriter/VTKWriter.hpp
View file @
63f84d6c
...
...
@@ -40,10 +40,6 @@ template <typename T> std::string getType()
return
"int"
;
else
if
(
typeid
(
T
)
==
typeid
(
unsigned
int
))
return
"unsigned_int"
;
else
if
(
typeid
(
T
)
==
typeid
(
long
int
))
return
"long"
;
else
if
(
typeid
(
T
)
==
typeid
(
unsigned
long
int
))
return
"unsigned_long"
;
else
if
(
typeid
(
T
)
==
typeid
(
bool
))
return
"bit"
;
...
...
src/VTKWriter/VTKWriter_graph_util.hpp
deleted
100644 → 0
View file @
f02a479f
/*
* VTKWriter_graph_util.hpp
*
* Created on: Mar 12, 2016
* Author: i-bird
*/
#ifndef OPENFPM_IO_SRC_VTKWRITER_VTKWRITER_GRAPH_UTIL_HPP_
#define OPENFPM_IO_SRC_VTKWRITER_VTKWRITER_GRAPH_UTIL_HPP_
#endif
/* OPENFPM_IO_SRC_VTKWRITER_VTKWRITER_GRAPH_UTIL_HPP_ */
src/VTKWriter/VTKWriter_grids_util.hpp
View file @
63f84d6c
...
...
@@ -291,7 +291,7 @@ struct meta_prop<I, ele_g,St,T[N1],is_writable>
for
(
size_t
i1
=
0
;
i1
<
N1
;
i1
++
)
{
tmp
=
vg
.
get
(
k
).
g
.
get_o
(
it
.
get
()).
template
get
<
I
::
value
>()[
i1
];
swap_endian_lt
(
tmp
);
tmp
=
swap_endian_lt
(
tmp
);
v_out
.
append
((
const
char
*
)
&
tmp
,
sizeof
(
T
));
}
if
(
N1
==
2
)
...
...
src/VTKWriter/is_vtk_writable.hpp
View file @
63f84d6c
...
...
@@ -185,7 +185,7 @@ struct is_vtk_writable<long int>
//! long int is vtk writable
enum
{
value
=
tru
e
value
=
fals
e
};
};
...
...
@@ -196,7 +196,7 @@ struct is_vtk_writable<unsigned long int>
//! unsigned long int is vtk writable
enum
{
value
=
tru
e
value
=
fals
e
};
};
...
...
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