Skip to content

Commit

Permalink
[Issue JdeRobot#792] Removes compilation warnings from pclRGBDServer …
Browse files Browse the repository at this point in the history
…driver
  • Loading branch information
lr-morales committed Jul 29, 2017
1 parent aac41ef commit 9c1621a
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion src/drivers/pclRGBDServer/cameraRGB.h
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ namespace kinect{
}

virtual std::string startCameraStreaming(const Ice::Current&){

return "";
}

virtual void stopCameraStreaming(const Ice::Current&) {
Expand Down
2 changes: 1 addition & 1 deletion src/drivers/pclRGBDServer/cameradepth.h
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,7 @@ namespace kinect{
}

virtual std::string startCameraStreaming(const Ice::Current&){

return "";
}

virtual void stopCameraStreaming(const Ice::Current&) {
Expand Down
4 changes: 2 additions & 2 deletions src/drivers/pclRGBDServer/pointcloud.h
Original file line number Diff line number Diff line change
Expand Up @@ -21,8 +21,8 @@ namespace kinect{

if(cloud.points.size()){
KData->p.resize(cloud.points.size());
int index = 0;
for(int i = 0; i < cloud.points.size(); i++){
unsigned int index = 0;
for(unsigned int i = 0; i < cloud.points.size(); i++){
KData->p[index].x = cloud.points[i].x;
KData->p[index].y = cloud.points[i].y;
KData->p[index].z = cloud.points[i].z;
Expand Down

0 comments on commit 9c1621a

Please sign in to comment.