Skip to content
Snippets Groups Projects
Commit 5756d121 authored by Markus Blatt's avatar Markus Blatt
Browse files

Documentation changed.

[[Imported from SVN: r338]]
parent ff39ad9f
No related branches found
No related tags found
No related merge requests found
......@@ -302,7 +302,8 @@ namespace Dune {
}
/**
* @brief Reserve space.
* @brief Reserve space. Values will be copied if data is reallocated.
*
* After calling this method the vector can hold up to
* capacity values. If the specified capacity is smaller
* than the current capacity and bigger than the current size
......@@ -316,7 +317,8 @@ namespace Dune {
}
/**
* @brief Reserve space.
* @brief Reserve space without copying if template parameter is false.
*
* After calling this method the vector can hold up to
* capacity values. If the specified capacity is smaller
* than the current capacity and bigger than the current size
......@@ -372,7 +374,8 @@ namespace Dune {
}
/**
* @brief Resize the vector.
* @brief Resize the vector. Values will be copied if data is reallocated.
*
* After calling this method ::N() will return size
* If the capacity of the vector is smaller than the specified
* size then reserve(size) will be called.
......@@ -386,7 +389,8 @@ namespace Dune {
/**
* @brief Resize the vector.
* @brief Resize the vector without copying if template parameter is false.
*
* After calling this method ::N() will return size
* If the capacity of the vector is smaller than the specified
* size then reserve(size) will be called.
......
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