Search Issue Tracker
Fixed in 2017.1.X
Votes
0
Found in
5.6.0f3
Issue ID
899356
Regression
No
[iOS] Null is not returned in UnBox() causing a compiler error in il2cpp-codegen.h
iOS: Compile error in il2cpp-codegen.h
The following code doesn't compile under iOS (XCode 8.2.1, iOS 10) unless you add the last line to return NULL:
inline void* UnBox(Il2CppCodeGenObject* obj, Il2CppClass* expectedBoxedClass)
{
NullCheck(obj);
if (obj->klass->element_class == expectedBoxedClass->element_class)
return il2cpp::vm::Object::Unbox(obj);
RaiseInvalidCastException(obj, expectedBoxedClass);
return NULL; // Must be added or compiler errors that the function can return without a value
}
Comments (1)
Add comment
All about bugs
View bugs we have successfully reproduced, and vote for the bugs you want to see fixed most urgently.
Latest issues
- Crash on MeshRenderer::DispatchUpdate when disabling the second Mesh Renderer on a GameObject
- Inaccurate collisions when resizing Game view
- Animator Controller Layer name stays unchanged in Layers tab when renamed from Inspector
- [RenderingDebugger]Motion vectors are displayed when Phong Tessellation is used on the material and Skinned Motion Vectors are enabled on the GameObject's Skinned Mesh Renderer component
- Shader Graph Enum Keywords always select last element in Entries when Stages is set to Fragment and Recursive Rendering is enabled in the Scene
jake-ruman
Jul 11, 2017 06:56
Unity 5.6.2f1 Personal. This issue still exist