Skip to content
Snippets Groups Projects
Commit b90685a6 authored by Tom Fischer's avatar Tom Fischer
Browse files

[MaL] Point3dWithID: const correctness.

parent 598f15bf
No related branches found
No related tags found
No related merge requests found
......@@ -41,7 +41,7 @@ public:
/// the provided id.
/// @param coords coordinates of the point
/// @param id the id of the object [default: max of std::size_t]
Point3dWithID(std::array<double,3> & coords,
Point3dWithID(std::array<double,3> const& coords,
std::size_t id = std::numeric_limits<std::size_t>::max())
: Point3d(coords), _id(id)
{}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment