Cosmetics.

This commit is contained in:
Bartosz Taudul 2022-09-17 23:31:34 +02:00
parent 4cf096d883
commit 8da6105ee4
No known key found for this signature in database
GPG Key ID: B7FE2008B7575DF3

View File

@ -113,7 +113,7 @@ static unordered_flat_set<const char*, charutil::Hasher, charutil::Comparator> G
static unordered_flat_set<const char*, charutil::Hasher, charutil::Comparator> GetAsmSizeDirectives()
{
unordered_flat_set<const char*, charutil::Hasher, charutil::Comparator> ret;
for( auto& v : { "byte", "word", "dword", "qword", "xmmword", "ymmword" })
for( auto& v : { "byte", "word", "dword", "qword", "xmmword", "ymmword" } )
{
ret.insert( v );
}