mirror of
https://github.com/NGSolve/netgen.git
synced 2024-12-25 05:20:34 +05:00
Initialize FlatArray members ( thx @mrambausek )
This commit is contained in:
parent
32522368b9
commit
3ce5b1958e
@ -436,9 +436,9 @@ namespace ngcore
|
|||||||
protected:
|
protected:
|
||||||
static constexpr IndexType BASE = IndexBASE<IndexType>();
|
static constexpr IndexType BASE = IndexBASE<IndexType>();
|
||||||
/// the size
|
/// the size
|
||||||
size_t size;
|
size_t size = 0;
|
||||||
/// the data
|
/// the data
|
||||||
T * __restrict data;
|
T * __restrict data = nullptr;
|
||||||
public:
|
public:
|
||||||
typedef T value_type;
|
typedef T value_type;
|
||||||
typedef IndexType index_type;
|
typedef IndexType index_type;
|
||||||
|
Loading…
Reference in New Issue
Block a user