Fix "ref" parameter (#61)
This commit is contained in:
+1
-3
@@ -76,10 +76,8 @@ namespace ProxyInterfaceSourceGeneratorTests.Source
|
||||
|
||||
public void In_Out_Ref1(in int a, out int b, ref int c)
|
||||
{
|
||||
int a_ = a;
|
||||
int b_;
|
||||
int c_ = c;
|
||||
_Instance.In_Out_Ref1(in a_, out b_, ref c_);
|
||||
_Instance.In_Out_Ref1(in a, out b_, ref c);
|
||||
b = b_;
|
||||
}
|
||||
|
||||
|
||||
+1
-3
@@ -103,10 +103,8 @@ namespace ProxyInterfaceSourceGeneratorTests.Source
|
||||
|
||||
public void In_Out_Ref1(in int a, out int b, ref int c)
|
||||
{
|
||||
int a_ = a;
|
||||
int b_;
|
||||
int c_ = c;
|
||||
_Instance.In_Out_Ref1(in a_, out b_, ref c_);
|
||||
_Instance.In_Out_Ref1(in a, out b_, ref c);
|
||||
b = b_;
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user