Skip to content
Snippets Groups Projects
Commit 8dea5268 authored by Jakub Klinkovský's avatar Jakub Klinkovský
Browse files

Fixed documentation of Array's copy constructor

The constructor makes a shallow copy, not a deep copy.
parent 2d7cfb6e
No related branches found
No related tags found
No related merge requests found
......@@ -70,10 +70,10 @@ class Array : public Object
/**
* \brief Copy constructor.
*
* Copies \e size elements from existing \e array into a new array.
* \param array Existing array that is about to be copied.
* \param begin Index from which the array is copied.
* \param size Number of array elements that should be copied.
* The constructor does not make a deep copy, but binds to the supplied array.
* \param array Existing array that is to be bound.
* \param begin The first index which should be bound.
* \param size Number of array elements that should be bound.
*/
Array( Array& array,
const IndexType& begin = 0,
......
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