Commit cd17f324 authored by Davis King's avatar Davis King
Browse files

fix warnings about possible use of uninitialized values

parent 1de47514
...@@ -163,7 +163,7 @@ namespace dlib ...@@ -163,7 +163,7 @@ namespace dlib
private: private:
size_t _size = 0; size_t _size = 0;
size_t _num_elements = 0; size_t _num_elements = 0;
container_type _dims; container_type _dims{};
}; };
inline dlib::uint32 hash( inline dlib::uint32 hash(
......
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