Skip to content
Snippets Groups Projects
Commit 6bc64078 authored by Dmitri Naumov's avatar Dmitri Naumov
Browse files

[GL] Grid; Explicitly delete copy and op=

parent 1fd26b5f
No related branches found
No related tags found
No related merge requests found
......@@ -52,6 +52,9 @@ public:
Grid(InputIterator first, InputIterator last,
std::size_t max_num_per_grid_cell = 512);
Grid(Grid const&) = delete;
Grid& operator=(Grid const&) = delete;
/**
* This is the destructor of the class. It deletes the internal data
* structures *not* including the pointers to the points.
......
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