Skip to content

Commit

Permalink
Make various public things internal to make newer VS versions happy
Browse files Browse the repository at this point in the history
  • Loading branch information
Stevie-O committed Nov 5, 2018
1 parent 15efa04 commit 014cf9f
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 3 deletions.
5 changes: 5 additions & 0 deletions SharpLua/Interfacing/MethodWrapper.cs
Original file line number Diff line number Diff line change
Expand Up @@ -38,6 +38,11 @@ public MethodBase cachedMethod

public bool IsReturnVoid;

/// <summary>
/// The internal Lua type that was last passed in for each parameter
/// </summary>
public LuaTypes[] luaTypes;

// List or arguments
public object[] args;
// Positions of out parameters
Expand Down
2 changes: 1 addition & 1 deletion SharpLua/LASM/PlatformConfig.cs
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
using System.Collections.Generic;
namespace SharpLua.LASM
{
public class PlatformConfig
class PlatformConfig
{
public class Platform
{
Expand Down
4 changes: 2 additions & 2 deletions SharpLua/Net20Support.cs
Original file line number Diff line number Diff line change
Expand Up @@ -14,8 +14,8 @@ class Dummy { }

namespace System
{
public delegate TResult Func<T, TResult>(T arg);
public delegate TResult Func<T1, T2, TResult>(T1 arg1, T2 arg2);
delegate TResult Func<T, TResult>(T arg);
delegate TResult Func<T1, T2, TResult>(T1 arg1, T2 arg2);
}

namespace System.Runtime.CompilerServices
Expand Down

0 comments on commit 014cf9f

Please sign in to comment.