Commit 24fda7cc authored by Davis King's avatar Davis King

updated docs

parent 566e9535
...@@ -286,7 +286,7 @@ double compute_sum_of_array_elements(const std::vector<double>& array) ...@@ -286,7 +286,7 @@ double compute_sum_of_array_elements(const std::vector<double>& array)
If you absolutely need pointer semantics then you can usually use a smart pointer like If you absolutely need pointer semantics then you can usually use a smart pointer like
<a href="containers.html#scoped_ptr">scoped_ptr</a> or <a href="containers.html#shared_ptr">shared_ptr</a>. <a href="containers.html#scoped_ptr">scoped_ptr</a> or <a href="containers.html#shared_ptr">shared_ptr</a>.
If that still isn't good enough for you and you <i>really</i> need to use a normal C style pointer If that still isn't good enough for you and you <i>really</i> need to use a normal C style pointer
then isolate your pointers inside a class so that they are contained in a small area of the code. then isolate your pointers inside a class or function so that they are contained in a small area of the code.
However, in practice the container classes in dlib and the STL are more than sufficient in nearly However, in practice the container classes in dlib and the STL are more than sufficient in nearly
every case where pointers would otherwise be used. every case where pointers would otherwise be used.
</p> </p>
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment