File tree Expand file tree Collapse file tree 3 files changed +4
-4
lines changed Expand file tree Collapse file tree 3 files changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -947,7 +947,7 @@ class EXPCL_PANDA_PGRAPH NodePath {
947
947
PY_EXTENSION (NodePath find_net_python_tag (PyObject *keys) const );
948
948
PY_MAKE_PROPERTY (python_tags, get_python_tags);
949
949
950
- PY_EXTENSION (int __traverse__ (visitproc visit, void *arg));
950
+ // PY_EXTENSION(int __traverse__(visitproc visit, void *arg));
951
951
952
952
INLINE void list_tags () const ;
953
953
Original file line number Diff line number Diff line change @@ -135,10 +135,10 @@ has_net_python_tag(PyObject *key) const {
135
135
/* *
136
136
* Called by Python to implement cycle detection.
137
137
*/
138
- INLINE int Extension<NodePath>::
138
+ /* INLINE int Extension<NodePath>::
139
139
__traverse__(visitproc visit, void *arg) {
140
140
if (_this->is_empty()) {
141
141
return 0;
142
142
}
143
143
return invoke_extension(_this->node()).__traverse__(visit, arg);
144
- }
144
+ }*/
Original file line number Diff line number Diff line change @@ -48,7 +48,7 @@ class Extension<NodePath> : public ExtensionBase<NodePath> {
48
48
NodePath find_net_python_tag (PyObject *key) const ;
49
49
50
50
// This is defined to implement cycle detection in Python tags.
51
- INLINE int __traverse__ (visitproc visit, void *arg);
51
+ // INLINE int __traverse__(visitproc visit, void *arg);
52
52
53
53
void set_shader_input (CPT_InternalName id, PyObject *value, int priority=0 );
54
54
void set_shader_inputs (PyObject *args, PyObject *kwargs);
You can’t perform that action at this time.
0 commit comments