Index: tools/sort-headers.py |
diff --git a/tools/sort-headers.py b/tools/sort-headers.py |
index 07c7f24d37b3c9bc8fd419c3c457c16f1c93bb49..3f3435d56b514fca1b56863a479af23dd5355fe5 100755 |
--- a/tools/sort-headers.py |
+++ b/tools/sort-headers.py |
@@ -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 |