Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
zilf
zilf
Commits
aa5d1b2e05cf
Commit
72091747
authored
Jun 15, 2019
by
Jesse McGrew
Browse files
Fix suppressing a comma-separated list of diagnostic codes.
parent
27ad7d9cf7af
Changes
1
Hide whitespace changes
Inline
Side-by-side
src/Zilf/Program.cs
View file @
aa5d1b2e
...
...
@@ -339,10 +339,7 @@ namespace Zilf
i
++;
if
(
i
<
args
.
Length
)
{
foreach
(
var
code
in
args
[
i
].
Split
(
','
))
{
suppressedDiagnosticCodes
.
Add
(
args
[
i
]);
}
suppressedDiagnosticCodes
.
AddRange
(
args
[
i
].
Split
(
','
));
}
else
{
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment