Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
S
ScalFMM
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Registry
Registry
Wiki
Wiki
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Commits
Open sidebar
solverstack
ScalFMM
Commits
cbd47f81
Commit
cbd47f81
authored
Mar 21, 2018
by
COULAUD Olivier
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Add include for FPoint
parent
16d4e065
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
6 additions
and
2 deletions
+6
-2
FTreeIO.hpp
Src/Files/FTreeIO.hpp
+6
-2
No files found.
Src/Files/FTreeIO.hpp
View file @
cbd47f81
...
...
@@ -5,8 +5,10 @@
#include <iostream>
#include <fstream>
#include "../Containers/FBufferReader.hpp"
#include "../Containers/FBufferWriter.hpp"
#include "Utils/FPoint.hpp"
#include "Containers/FBufferReader.hpp"
#include "Containers/FBufferWriter.hpp"
#include "Utils/FPoint.hpp"
/** This class proposes static methods to save and load
...
...
@@ -192,6 +194,7 @@ public:
FSize
sizeOfLeaf
=
0
;
file
.
read
((
char
*
)
&
sizeOfLeaf
,
sizeof
(
FSize
));
buffer
.
seek
(
0
);
buffer
.
reserve
(
sizeOfLeaf
);
file
.
read
((
char
*
)
buffer
.
data
(),
sizeOfLeaf
);
...
...
@@ -226,6 +229,7 @@ public:
FSize
sizeOfCell
=
0
;
file
.
read
((
char
*
)
&
sizeOfCell
,
sizeof
(
FSize
));
buffer
.
seek
(
0
);
buffer
.
reserve
(
sizeOfCell
);
file
.
read
((
char
*
)
buffer
.
data
(),
sizeOfCell
);
...
...
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