add init list for metadatatype.
parent
5c9a08e375
commit
3b4a9812e5
|
@ -86,6 +86,12 @@ typedef enum aiMetadataType {
|
||||||
struct aiMetadataEntry {
|
struct aiMetadataEntry {
|
||||||
aiMetadataType mType;
|
aiMetadataType mType;
|
||||||
void *mData;
|
void *mData;
|
||||||
|
|
||||||
|
aiMetadataEntry() :
|
||||||
|
mType(AI_META_MAX),
|
||||||
|
mData( nullptr ) {
|
||||||
|
// empty
|
||||||
|
}
|
||||||
};
|
};
|
||||||
|
|
||||||
#ifdef __cplusplus
|
#ifdef __cplusplus
|
||||||
|
|
Loading…
Reference in New Issue