Fix Cycles compile error after last own commit
We can't include `BLI_utildefines.h` in `RNA_types.h` since Cycles includes that, but duplicates some of the util defines. So you'd have duplicated definitions.
This commit is contained in:
@@ -524,7 +524,7 @@ void NODE_OT_add_object(wmOperatorType *ot)
|
||||
"Session UUID of the data-block to assign",
|
||||
INT32_MIN,
|
||||
INT32_MAX);
|
||||
RNA_def_property_flag(prop, PROP_SKIP_SAVE | PROP_HIDDEN);
|
||||
RNA_def_property_flag(prop, (PropertyFlag)(PROP_HIDDEN | PROP_SKIP_SAVE));
|
||||
}
|
||||
|
||||
/** \} */
|
||||
@@ -631,7 +631,7 @@ void NODE_OT_add_texture(wmOperatorType *ot)
|
||||
"Session UUID of the data-block to assign",
|
||||
INT32_MIN,
|
||||
INT32_MAX);
|
||||
RNA_def_property_flag(prop, PROP_SKIP_SAVE | PROP_HIDDEN);
|
||||
RNA_def_property_flag(prop, (PropertyFlag)(PROP_HIDDEN | PROP_SKIP_SAVE));
|
||||
}
|
||||
|
||||
/** \} */
|
||||
@@ -743,7 +743,7 @@ void NODE_OT_add_collection(wmOperatorType *ot)
|
||||
"Session UUID of the data-block to assign",
|
||||
INT32_MIN,
|
||||
INT32_MAX);
|
||||
RNA_def_property_flag(prop, PROP_SKIP_SAVE | PROP_HIDDEN);
|
||||
RNA_def_property_flag(prop, (PropertyFlag)(PROP_HIDDEN | PROP_SKIP_SAVE));
|
||||
}
|
||||
|
||||
/** \} */
|
||||
@@ -949,7 +949,7 @@ void NODE_OT_add_mask(wmOperatorType *ot)
|
||||
"Session UUID of the data-block to assign",
|
||||
INT32_MIN,
|
||||
INT32_MAX);
|
||||
RNA_def_property_flag(prop, PROP_SKIP_SAVE | PROP_HIDDEN);
|
||||
RNA_def_property_flag(prop, (PropertyFlag)(PROP_HIDDEN | PROP_SKIP_SAVE));
|
||||
}
|
||||
|
||||
/** \} */
|
||||
|
@@ -23,7 +23,6 @@
|
||||
#define __RNA_TYPES_H__
|
||||
|
||||
#include "../blenlib/BLI_sys_types.h"
|
||||
#include "BLI_utildefines.h"
|
||||
|
||||
#ifdef __cplusplus
|
||||
extern "C" {
|
||||
@@ -315,7 +314,6 @@ typedef enum PropertyFlag {
|
||||
*/
|
||||
PROP_NO_DEG_UPDATE = (1 << 30),
|
||||
} PropertyFlag;
|
||||
ENUM_OPERATORS(PropertyFlag, PROP_TEXTEDIT_UPDATE);
|
||||
|
||||
/**
|
||||
* Flags related to comparing and overriding RNA properties.
|
||||
|
Reference in New Issue
Block a user