Files
godot/core
Karroffel 40bb90fabd fixed ptrcall cast for const Ref<T>
Some methods require a const Ref<T> argument,
the ptrcall method wrappers cast `void *` to the
apropriate types. The problem is that there is no `Ref(const T *)`
constructor, but since Ref modifies the refcount of a Reference
anyway there's no point in a const version.

The problem is that with a `const T *` constructor call, the
argument gets converted to Variant first and loses all the
reference information, resulting in a null reference as the
argument to the constructor.
2017-06-20 21:38:21 +02:00
..
2017-05-28 21:48:05 -03:00
2017-06-16 02:39:16 +02:00
2017-04-14 11:31:18 +02:00
2017-06-01 00:16:33 +02:00
2017-05-05 02:09:43 +02:00
2017-06-08 23:48:14 -05:00
2017-04-26 04:48:03 +09:00
2017-06-19 20:08:31 -07:00