Add another special rule for Windows headers to tools/sort-headers.py.
NOTRY=true Review URL: https://codereview.chromium.org/491243003 Cr-Commit-Position: refs/heads/master@{#291774}
This commit is contained in:
@ -53,6 +53,8 @@ def IncludeCompareKey(line):
|
||||
return '0'
|
||||
if line.startswith('<atlbase.h>'): # Must be before atlapp.h.
|
||||
return '1' + line
|
||||
if line.startswith('<ole2.h>'): # Must be before e.g. intshcut.h
|
||||
return '1' + line
|
||||
if line.startswith('<unknwn.h>'): # Must be before e.g. intshcut.h
|
||||
return '1' + line
|
||||
|
||||
|
Reference in New Issue
Block a user