Correct VS auto-format

This commit is contained in:
FrKaram 2018-07-01 13:50:02 +02:00
parent c9c62b1831
commit 3513f0da5f

View File

@ -1066,40 +1066,40 @@ namespace memfs
break; break;
switch (Arg[1]) switch (Arg[1])
{ {
case '?': case '?':
throw new CommandLineUsageException(); throw new CommandLineUsageException();
case 'D': case 'D':
argtos(Args, ref I, ref DebugLogFile); argtos(Args, ref I, ref DebugLogFile);
break; break;
case 'd': case 'd':
argtol(Args, ref I, ref DebugFlags); argtol(Args, ref I, ref DebugFlags);
break; break;
case 'F': case 'F':
argtos(Args, ref I, ref FileSystemName); argtos(Args, ref I, ref FileSystemName);
break; break;
case 'i': case 'i':
CaseInsensitive = true; CaseInsensitive = true;
break; break;
case 'm': case 'm':
argtos(Args, ref I, ref MountPoint); argtos(Args, ref I, ref MountPoint);
break; break;
case 'n': case 'n':
argtol(Args, ref I, ref MaxFileNodes); argtol(Args, ref I, ref MaxFileNodes);
break; break;
case 'S': case 'S':
argtos(Args, ref I, ref RootSddl); argtos(Args, ref I, ref RootSddl);
break; break;
case 's': case 's':
argtol(Args, ref I, ref MaxFileSize); argtol(Args, ref I, ref MaxFileSize);
break; break;
case 't': case 't':
argtol(Args, ref I, ref FileInfoTimeout); argtol(Args, ref I, ref FileInfoTimeout);
break; break;
case 'u': case 'u':
argtos(Args, ref I, ref VolumePrefix); argtos(Args, ref I, ref VolumePrefix);
break; break;
default: default:
throw new CommandLineUsageException(); throw new CommandLineUsageException();
} }
} }