Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion src/MIDebugEngine/Natvis.Impl/NatvisNames.cs
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ private void SetArraySize(int[] Dims)
}

private static Regex s_identifier = new Regex("^[a-zA-Z$_][a-zA-Z$_0-9]*");
private static Regex s_numeric = new Regex("^[0-9]+(u|l|ul)*"); // only decimal constants
private static Regex s_numeric = new Regex("^[-]?[0-9]+(u|l|ul)*"); // only decimal constants
private static Regex s_simpleType = new Regex(
@"^(signed\s+char|unsigned\s+char|char16_t|char32_t|wchar_t|char|"
+ @"signed\s+short\s+int|signed\s+short|unsigned\s+short\s+int|unsigned\s+short|short\s+int|short|"
Expand Down
Loading