Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
cta
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package registry
Container registry
Harbor Registry
Model registry
Operate
Environments
Terraform modules
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
dCache
cta
Commits
485c2ce2
Commit
485c2ce2
authored
2 years ago
by
Jorge Camarero Vera
Browse files
Options
Downloads
Patches
Plain Diff
Resolve "Problem with cppcheck"
parent
66f2ea92
No related branches found
No related tags found
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
ReleaseNotes.md
+1
-0
1 addition, 0 deletions
ReleaseNotes.md
objectstore/RetrieveQueueAlgorithms.hpp
+1
-1
1 addition, 1 deletion
objectstore/RetrieveQueueAlgorithms.hpp
with
2 additions
and
1 deletion
ReleaseNotes.md
+
1
−
0
View file @
485c2ce2
...
@@ -22,6 +22,7 @@
...
@@ -22,6 +22,7 @@
-
cta/CTA#238 - Compilation fails when using cta::common::Configuration::getConfEntInt(...)
-
cta/CTA#238 - Compilation fails when using cta::common::Configuration::getConfEntInt(...)
-
cta/CTA#273 - Fix tape state change command idempotency when resetting REPACKING/BROKEN/PENDING
-
cta/CTA#273 - Fix tape state change command idempotency when resetting REPACKING/BROKEN/PENDING
-
cta/CTA#280 - Add a timeout to tape server global lock on the object store
-
cta/CTA#280 - Add a timeout to tape server global lock on the object store
-
cta/CTA#292 - Problem with cppcheck
### Continuous Integration
### Continuous Integration
-
cta/CTA#205 - Updating EOS4/EOS4 in versionlock for v4.8.95/v5.1.5
-
cta/CTA#205 - Updating EOS4/EOS4 in versionlock for v4.8.95/v5.1.5
-
cta/CTA#253 - Allow Failure for cta_valgrind tests
-
cta/CTA#253 - Allow Failure for cta_valgrind tests
...
...
This diff is collapsed.
Click to expand it.
objectstore/RetrieveQueueAlgorithms.hpp
+
1
−
1
View file @
485c2ce2
...
@@ -483,7 +483,7 @@ struct ContainerTraits<RetrieveQueue,RetrieveQueueToTransfer>::PoppedElementsSum
...
@@ -483,7 +483,7 @@ struct ContainerTraits<RetrieveQueue,RetrieveQueueToTransfer>::PoppedElementsSum
uint64_t
bytes
;
uint64_t
bytes
;
bool
diskSystemFull
=
false
;
bool
diskSystemFull
=
false
;
std
::
string
fullDiskSystem
;
std
::
string
fullDiskSystem
;
PoppedElementsSummary
(
uint64_t
f
=
0
,
uint64_t
b
=
0
)
:
files
(
f
),
bytes
(
b
)
{}
PoppedElementsSummary
(
uint64_t
f
=
0
,
uint64_t
b
=
0
)
:
files
(
f
),
bytes
(
b
)
{}
// cppcheck-suppress uninitMemberVar
bool
operator
==
(
const
PoppedElementsSummary
&
pes
)
const
{
bool
operator
==
(
const
PoppedElementsSummary
&
pes
)
const
{
return
bytes
==
pes
.
bytes
&&
files
==
pes
.
files
;
return
bytes
==
pes
.
bytes
&&
files
==
pes
.
files
;
}
}
...
...
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