Commit c5d3295f authored by thestig's avatar thestig Committed by Commit bot

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}
parent 79ef2ff1
...@@ -53,6 +53,8 @@ def IncludeCompareKey(line): ...@@ -53,6 +53,8 @@ def IncludeCompareKey(line):
return '0' return '0'
if line.startswith('<atlbase.h>'): # Must be before atlapp.h. if line.startswith('<atlbase.h>'): # Must be before atlapp.h.
return '1' + line 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 if line.startswith('<unknwn.h>'): # Must be before e.g. intshcut.h
return '1' + line return '1' + line
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment