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
b0deee31
Commit
b0deee31
authored
4 years ago
by
Cristian Lalescu
Browse files
Options
Downloads
Patches
Plain Diff
removes meaningless type qualifier
parent
9378bf2a
No related branches found
No related tags found
No related merge requests found
Changes
2
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
cpp/particles/interpolation/abstract_particle_set.hpp
+1
-1
1 addition, 1 deletion
cpp/particles/interpolation/abstract_particle_set.hpp
cpp/particles/interpolation/particle_set.hpp
+1
-1
1 addition, 1 deletion
cpp/particles/interpolation/particle_set.hpp
with
2 additions
and
2 deletions
cpp/particles/interpolation/abstract_particle_set.hpp
+
1
−
1
View file @
b0deee31
...
...
@@ -71,7 +71,7 @@ class abstract_particle_set
virtual
partsize_t
getLocalNumberOfParticles
()
const
=
0
;
virtual
partsize_t
getTotalNumberOfParticles
()
const
=
0
;
virtual
partsize_t
*
getParticlesPerPartition
()
const
=
0
;
virtual
const
int
getStateSize
()
const
=
0
;
virtual
int
getStateSize
()
const
=
0
;
virtual
std
::
vector
<
hsize_t
>
getParticleFileLayout
()
=
0
;
...
...
This diff is collapsed.
Click to expand it.
cpp/particles/interpolation/particle_set.hpp
+
1
−
1
View file @
b0deee31
...
...
@@ -212,7 +212,7 @@ class particle_set: public abstract_particle_set
return
this
->
number_particles_per_partition
.
get
();
}
const
int
getStateSize
()
const
int
getStateSize
()
const
{
return
state_size
;
}
...
...
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