Compile constructor of aiMetadataType only for c++
parent
3b4a9812e5
commit
6afb72216c
|
@ -87,11 +87,13 @@ struct aiMetadataEntry {
|
||||||
aiMetadataType mType;
|
aiMetadataType mType;
|
||||||
void *mData;
|
void *mData;
|
||||||
|
|
||||||
|
#ifdef __cplusplus
|
||||||
aiMetadataEntry() :
|
aiMetadataEntry() :
|
||||||
mType(AI_META_MAX),
|
mType(AI_META_MAX),
|
||||||
mData( nullptr ) {
|
mData( nullptr ) {
|
||||||
// empty
|
// empty
|
||||||
}
|
}
|
||||||
|
#endif
|
||||||
};
|
};
|
||||||
|
|
||||||
#ifdef __cplusplus
|
#ifdef __cplusplus
|
||||||
|
|
Loading…
Reference in New Issue