Commit 8c6e4e05 authored by Dominik Charousset's avatar Dominik Charousset

updated documentation

parent 62ace652
...@@ -42,10 +42,9 @@ ...@@ -42,10 +42,9 @@
namespace cppa { namespace util { namespace cppa { namespace util {
/** /**
* @brief A vector with a fixed maximum size. * @brief A vector with a fixed maximum size (uses an array internally).
* * @warning This implementation is highly optimized for arithmetic types and
* This implementation is highly optimized for arithmetic types and does * does <b>not</b> call constructors or destructors properly.
* <b>not</b> call constructors or destructors properly.
*/ */
template<typename T, size_t MaxSize> template<typename T, size_t MaxSize>
class fixed_vector { class fixed_vector {
......
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