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