Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
T
TurTLE
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
Container registry
Model registry
Operate
Environments
Monitor
Incidents
Service Desk
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
TurTLE
TurTLE
Commits
5603b077
Commit
5603b077
authored
6 years ago
by
Cristian Lalescu
Browse files
Options
Downloads
Patches
Plain Diff
make explicit cast
compiler was warning that something is reduced from int to hsize_t.
parent
551203bf
Branches
Branches containing commit
Tags
Tags containing commit
1 merge request
!23
WIP: Feature/use cmake
Pipeline
#43751
canceled
6 years ago
Stage: test
Changes
1
Pipelines
2
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
bfps/cpp/particles/particles_output_sampling_hdf5.hpp
+1
-1
1 addition, 1 deletion
bfps/cpp/particles/particles_output_sampling_hdf5.hpp
with
1 addition
and
1 deletion
bfps/cpp/particles/particles_output_sampling_hdf5.hpp
+
1
−
1
View file @
5603b077
...
...
@@ -216,7 +216,7 @@ public:
hid_t
memspace
=
H5Screate_simple
(
2
,
count
,
NULL
);
assert
(
memspace
>=
0
);
const
hsize_t
file_count
[
2
]
=
{
hsize_t
(
Parent
::
getTotalNbParticles
()),
size_particle_rhs
};
const
hsize_t
file_count
[
2
]
=
{
hsize_t
(
Parent
::
getTotalNbParticles
()),
hsize_t
(
size_particle_rhs
)
};
hid_t
filespace
=
H5Screate_simple
(
2
,
file_count
,
NULL
);
assert
(
filespace
>=
0
);
int
rethdf
=
H5Sselect_hyperslab
(
...
...
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