Browse Source

Fixed MoonSharp warning when not building for an AOT platform

master
Christopher 8 years ago
parent
commit
9378f17be8
  1. 3
      Assets/Fungus/Thirdparty/FungusLua/Thirdparty/MoonSharp/Interpreter/Platforms/PlatformAutoDetector.cs

3
Assets/Fungus/Thirdparty/FungusLua/Thirdparty/MoonSharp/Interpreter/Platforms/PlatformAutoDetector.cs vendored

@ -10,7 +10,10 @@ namespace MoonSharp.Interpreter.Platforms
/// </summary>
public static class PlatformAutoDetector
{
#if UNITY_WEBGL || UNITY_IOS || UNITY_TVOS || ENABLE_IL2CPP
#else
private static bool? m_IsRunningOnAOT = null;
#endif
private static bool m_AutoDetectionsDone = false;

Loading…
Cancel
Save