Skip to content

Commit ec294f6

Browse files
committed
build warnings
- GCC 4.8.5 / CentOS 7
1 parent 960714d commit ec294f6

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)