mirror of
https://github.com/thorvg/thorvg.git
synced 2025-06-08 13:43:43 +00:00
array: use default constructor
This commit is contained in:
parent
f01a9681ca
commit
40c60ea8cc
1 changed files with 1 additions and 1 deletions
|
@ -41,7 +41,7 @@ struct Array
|
||||||
uint32_t count = 0;
|
uint32_t count = 0;
|
||||||
uint32_t reserved = 0;
|
uint32_t reserved = 0;
|
||||||
|
|
||||||
Array(){}
|
Array() = default;
|
||||||
|
|
||||||
Array(int32_t size)
|
Array(int32_t size)
|
||||||
{
|
{
|
||||||
|
|
Loading…
Add table
Reference in a new issue