Skip to content

Commit dd04a9b

Browse files
committed
Fix unused-variable
1 parent 8427ddb commit dd04a9b

File tree

3 files changed

+1
-4
lines changed

3 files changed

+1
-4
lines changed

ed_sensor_integration/src/kinect/association.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -126,7 +126,7 @@ void associateAndUpdate(const std::vector<ed::EntityConstPtr>& entities, const r
126126

127127
// Update the entity
128128
const ed::EntityConstPtr& e = entities[i_entity];
129-
const ed::ConvexHull& entity_chull = e->convexHull();
129+
// const ed::ConvexHull& entity_chull = e->convexHull();
130130

131131
id = e->id();
132132

ed_sensor_integration/src/kinect/kinect_plugin.cpp

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -69,8 +69,6 @@ void KinectPlugin::initialize(ed::InitData& init)
6969

7070
void KinectPlugin::process(const ed::PluginInput& data, ed::UpdateRequest& req)
7171
{
72-
const ed::WorldModel& world = data.world;
73-
7472
// - - - - - - - - - - - - - - - - - -
7573
// Fetch kinect image and pose
7674

ed_sensor_integration/tools/segmenter.cpp

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -138,7 +138,6 @@ int main(int argc, char **argv)
138138
Updater updater;
139139

140140
std::vector<ed::Snapshot> snapshots;
141-
unsigned int i_snapshot = 0;
142141

143142
while(true)
144143
{

0 commit comments

Comments
 (0)