mirror of
https://github.com/panda3d/panda3d.git
synced 2025-10-02 01:44:06 -04:00
Consider non-const overload before considering const overload in Python bindings
This commit is contained in:
parent
f0e8dd4117
commit
4c61db6374
@ -3992,6 +3992,11 @@ bool RemapCompareLess(FunctionRemap *in1, FunctionRemap *in2) {
|
||||
assert(in1 != NULL);
|
||||
assert(in2 != NULL);
|
||||
|
||||
if (in1->_const_method != in2->_const_method) {
|
||||
// Non-const methods should come first.
|
||||
return in2->_const_method;
|
||||
}
|
||||
|
||||
if (in1->_parameters.size() != in2->_parameters.size()) {
|
||||
return (in1->_parameters.size() > in2->_parameters.size());
|
||||
}
|
||||
|
Loading…
x
Reference in New Issue
Block a user