Skip to content

Commit 9d32f0c

Browse files
committed
Merge pull request #2775 from alalek:4.x_build_warnings_gcc_4.8.5
2 parents 960714d + ec294f6 commit 9d32f0c

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

modules/rgbd/src/pose_graph.hpp

+2-2
Original file line numberDiff line numberDiff line change
@@ -228,8 +228,8 @@ class PoseGraph
228228
virtual ~PoseGraph() = default;
229229

230230
//! PoseGraph can be copied/cloned
231-
PoseGraph(const PoseGraph& _poseGraph) = default;
232-
PoseGraph& operator=(const PoseGraph& _poseGraph) = default;
231+
PoseGraph(const PoseGraph&) = default;
232+
PoseGraph& operator=(const PoseGraph&) = default;
233233

234234
void addNode(const PoseGraphNode& node) { nodes.push_back(node); }
235235
void addEdge(const PoseGraphEdge& edge) { edges.push_back(edge); }

0 commit comments

Comments
 (0)