Visual studio builds now use /Wall instead of /W4 - and only 4 warnings are left disabled globally - fixes #95
diff --git a/examples/executable_dll_and_plugin/implementation.cpp b/examples/executable_dll_and_plugin/implementation.cpp
index 1c8464f..0e468cc 100644
--- a/examples/executable_dll_and_plugin/implementation.cpp
+++ b/examples/executable_dll_and_plugin/implementation.cpp
@@ -2,7 +2,9 @@
 #define DOCTEST_CONFIG_IMPLEMENT
 #include "doctest.h"
 
+DOCTEST_MAKE_STD_HEADERS_CLEAN_FROM_WARNINGS_ON_WALL_BEGIN
 #include <cstdio>
+DOCTEST_MAKE_STD_HEADERS_CLEAN_FROM_WARNINGS_ON_WALL_END
 
 TEST_CASE("implementation") {
     printf("I am a test from the implementation!\n");