ReplacementItem - fix uninitialized variable warning. NFCI.

This commit is contained in:
Simon Pilgrim 2019-11-08 14:19:23 +00:00
parent 483ed6460d
commit f6fa57cf57
1 changed files with 1 additions and 1 deletions

View File

@ -57,7 +57,7 @@ struct ReplacementItem {
size_t Index = 0; size_t Index = 0;
size_t Align = 0; size_t Align = 0;
AlignStyle Where = AlignStyle::Right; AlignStyle Where = AlignStyle::Right;
char Pad; char Pad = 0;
StringRef Options; StringRef Options;
}; };