mirror of
https://github.com/davisking/dlib.git
synced 2024-11-01 10:14:53 +08:00
fix warnings about possible use of uninitialized values
This commit is contained in:
parent
1de47514bd
commit
cd17f324eb
@ -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(
|
||||||
|
Loading…
Reference in New Issue
Block a user