Skip to content

Commit 0d021eb

Browse files
author
mikeblome
committed
fixed code example
1 parent eb26dd7 commit 0d021eb

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

docs/cpp-conformance-improvements-2017.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -934,10 +934,10 @@ This new warning C4768 will be given on some Windows SDK headers that were shipp
934934
1) Switch to the latest Windows SDK that came with Visual Studio 2017 15.5 release.
935935
2) Turn off the warning around the #include of the Windows SDK header statement:
936936
```cpp
937+
#pragma warning (push)
937938
#pragma warning(disable:4768)
938-
#pragma warning (push)
939939
#include <shlobj.h>
940-
#pragma warning (pop)
940+
#pragma warning (pop)
941941
```
942942

943943
### <a name="extern_linkage"></a>Extern constexpr linkage

0 commit comments

Comments
 (0)