0

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:
thestig
2014-08-25 15:32:35 -07:00
committed by Commit bot
parent 79ef2ff18c
commit c5d3295f9c

@ -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