Change SafeProcessHandle to IntPtr again, ugh

This commit is contained in:
Mino 2020-04-12 00:51:09 +09:00
parent 4042d138b2
commit 32af098159
13 changed files with 363 additions and 229 deletions

View file

@ -35,7 +35,7 @@ namespace Dalamud.Bootstrap.SqexArg
/// <param name="input"></param>
/// <returns></returns>
/// <exception cref="SqexArgException">Thrown when failed to parse the input.</exception>
public static IEnumerable<KeyValuePair<string, string>> Parse(ReadOnlySpan<char> input)
public static IEnumerable<KeyValuePair<string, string>> Parse(string input)
{
var test = KeyMarker.Parse(input);
var result = Parser.Parse(input);