Skip to content
Snippets Groups Projects
Commit a20ac3e3 authored by Kristof Szabados's avatar Kristof Szabados
Browse files

make the implicit conversion explicit


Signed-off-by: default avatarKristof Szabados <Kristof.Szabados@ericsson.com>
parent 0894ab63
No related branches found
No related tags found
No related merge requests found
...@@ -81,7 +81,7 @@ private: ...@@ -81,7 +81,7 @@ private:
public: public:
static const size_t max_map_length = -1; static const size_t max_map_length = (size_t) -1;
/** Creates an empty map. */ /** Creates an empty map. */
map() : num_m(0), max_m(0), last_searched_key(0), m_ptr(NULL) { } map() : num_m(0), max_m(0), last_searched_key(0), m_ptr(NULL) { }
......
...@@ -67,7 +67,7 @@ private: ...@@ -67,7 +67,7 @@ private:
public: public:
static const size_t max_vector_length = -1; static const size_t max_vector_length = (size_t) -1;
/** Creates an empty vector. */ /** Creates an empty vector. */
vector() : num_e(0), e_ptr(NULL) { } vector() : num_e(0), e_ptr(NULL) { }
......
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