Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
F
Firmware
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
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
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Alberto Ruiz Garcia
Firmware
Commits
8fdcdedc
Commit
8fdcdedc
authored
7 years ago
by
Daniel Agar
Browse files
Options
Downloads
Patches
Plain Diff
Publication remove unused instance class member
parent
3d9cd5c0
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
src/modules/uORB/Publication.cpp
+2
-1
2 additions, 1 deletion
src/modules/uORB/Publication.cpp
src/modules/uORB/Publication.hpp
+0
-1
0 additions, 1 deletion
src/modules/uORB/Publication.hpp
with
2 additions
and
2 deletions
src/modules/uORB/Publication.cpp
+
2
−
1
View file @
8fdcdedc
...
...
@@ -69,7 +69,8 @@ bool PublicationBase::update(void *data)
orb_advert_t
handle
=
nullptr
;
if
(
_priority
>
0
)
{
handle
=
orb_advertise_multi
(
_meta
,
data
,
&
_instance
,
_priority
);
int
instance
;
handle
=
orb_advertise_multi
(
_meta
,
data
,
&
instance
,
_priority
);
}
else
{
handle
=
orb_advertise
(
_meta
,
data
);
...
...
This diff is collapsed.
Click to expand it.
src/modules/uORB/Publication.hpp
+
0
−
1
View file @
8fdcdedc
...
...
@@ -81,7 +81,6 @@ protected:
const
struct
orb_metadata
*
_meta
;
const
int
_priority
;
int
_instance
{
0
};
orb_advert_t
_handle
{
nullptr
};
};
...
...
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