C# std::array changes file addition
Fix C# warnings in test-case too.
This commit is contained in:
parent
d48b1712a8
commit
eda0779e76
2 changed files with 8 additions and 2 deletions
|
|
@ -67,7 +67,7 @@ public class cpp11_li_std_array_runme
|
|||
ai[ai.Count] = 0;
|
||||
throw new Exception("Out of range exception not caught");
|
||||
}
|
||||
catch (ArgumentOutOfRangeException e)
|
||||
catch (ArgumentOutOfRangeException)
|
||||
{
|
||||
}
|
||||
try
|
||||
|
|
@ -75,7 +75,7 @@ public class cpp11_li_std_array_runme
|
|||
ai[-1] = 0;
|
||||
throw new Exception("Out of range exception not caught");
|
||||
}
|
||||
catch (ArgumentOutOfRangeException e)
|
||||
catch (ArgumentOutOfRangeException)
|
||||
{
|
||||
}
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue