-
Notifications
You must be signed in to change notification settings - Fork 4.7k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Replace Debug.Assert(false,
with Debug.Fail(
#105205
Conversation
Tagging subscribers to this area: @dotnet/area-meta |
@@ -658,7 +658,7 @@ | |||
// case 0: | |||
// return x; | |||
// default: | |||
// Debug.Assert(false, "Bad field index"); | |||
// Debug.Fail("Bad field index"); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
this comment says "This code was automatically generated by the TraceParserGen tool" .. unless that tool is updated, whereever it is, the comment probably shouldn't change.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Seems like the whole file could just be deleted. @brianrob?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Looks like it's all comments, so yes. @davmason?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
👍Just found it as I catch up on e-mail.
No description provided.