소스 검색

Utilities/Release: Stabilize include order in WiX custom action

In `detect_nsis_overwrite.cpp` we include windows.h first, and we must
preserve that.  Place the include in an isolated block so that tools
that sort includes do not move it.
Brad King 9 년 전
부모
커밋
0e7bca923e
1개의 변경된 파일1개의 추가작업 그리고 0개의 파일을 삭제
  1. 1 0
      Utilities/Release/WiX/CustomAction/detect_nsis_overwrite.cpp

+ 1 - 0
Utilities/Release/WiX/CustomAction/detect_nsis_overwrite.cpp

@@ -1,4 +1,5 @@
 #include <windows.h>
+
 #include <msi.h>
 #include <msiquery.h>