| Index: tools/sort-headers.py
|
| diff --git a/tools/sort-headers.py b/tools/sort-headers.py
|
| index 42a8be8e52b705b03388ee5ac5ee1c21bf64fdac..3771b773018bd4502ba5efc6c38961665e61a8cc 100755
|
| --- a/tools/sort-headers.py
|
| +++ b/tools/sort-headers.py
|
| @@ -55,6 +55,8 @@ def IncludeCompareKey(line):
|
| return '1' + line
|
| if line.startswith('<unknwn.h>'): # Must be before e.g. intshcut.h
|
| return '1' + line
|
| + if line.startswith('<ole2.h>'): # Must be before e.g. intshcut.h
|
| + return '1' + line
|
|
|
| # C++ system headers should come after C system headers.
|
| if line.startswith('<'):
|
|
|