Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
E
ECSS Services
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Deploy
Releases
Package registry
Model registry
Operate
Terraform modules
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor 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
AcubeSat-OBC
ECSS Services
Commits
c979e30a
Unverified
Commit
c979e30a
authored
5 years ago
by
Grigoris Pavlakis
Browse files
Options
Downloads
Patches
Plain Diff
Remove unneeded default constructor
Suggested by @xlxs41
parent
08953456
No related branches found
Branches containing commit
No related tags found
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
inc/Services/Parameter.hpp
+0
-1
0 additions, 1 deletion
inc/Services/Parameter.hpp
src/Services/Parameter.cpp
+0
-6
0 additions, 6 deletions
src/Services/Parameter.cpp
with
0 additions
and
7 deletions
inc/Services/Parameter.hpp
+
0
−
1
View file @
c979e30a
...
@@ -59,7 +59,6 @@ class Parameter {
...
@@ -59,7 +59,6 @@ class Parameter {
ValueType
currentValue
=
0
;
ValueType
currentValue
=
0
;
public:
public:
Parameter
();
Parameter
(
uint8_t
newPtc
,
uint8_t
newPfc
,
uint32_t
initialValue
=
0
,
UpdatePtr
newPtr
=
nullptr
);
Parameter
(
uint8_t
newPtc
,
uint8_t
newPfc
,
uint32_t
initialValue
=
0
,
UpdatePtr
newPtr
=
nullptr
);
void
setCurrentValue
(
ValueType
newVal
);
void
setCurrentValue
(
ValueType
newVal
);
...
...
This diff is collapsed.
Click to expand it.
src/Services/Parameter.cpp
+
0
−
6
View file @
c979e30a
#include
"Services/Parameter.hpp"
#include
"Services/Parameter.hpp"
Parameter
::
Parameter
()
{
ptc
=
0
;
pfc
=
0
;
ptr
=
nullptr
;
}
Parameter
::
Parameter
(
uint8_t
newPtc
,
uint8_t
newPfc
,
uint32_t
initialValue
,
UpdatePtr
newPtr
)
{
Parameter
::
Parameter
(
uint8_t
newPtc
,
uint8_t
newPfc
,
uint32_t
initialValue
,
UpdatePtr
newPtr
)
{
ptc
=
newPtc
;
ptc
=
newPtc
;
pfc
=
newPfc
;
pfc
=
newPfc
;
...
...
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