1
0
mirror of https://github.com/godotengine/godot.git synced 2025-11-05 12:10:55 +00:00

Mono: Fix compiler error with Variant::operator AABB()

This commit is contained in:
Ignacio Etcheverry
2017-11-18 18:13:57 +01:00
parent 63283eca55
commit b51b3dc030
2 changed files with 2 additions and 2 deletions

View File

@@ -36,7 +36,7 @@ namespace GDMonoMarshal {
#define RETURN_BOXED_STRUCT(m_t, m_var_in) \
{ \
const m_t &m_in = m_var_in->operator m_t(); \
const m_t &m_in = m_var_in->operator ::m_t(); \
MARSHALLED_OUT(m_t, m_in, raw); \
return mono_value_box(mono_domain_get(), CACHED_CLASS_RAW(m_t), raw); \
}