From 2fdfacd6d92bf9e8dc6f1b77cbac59eaf8771f28 Mon Sep 17 00:00:00 2001 From: Pierre Bourdon Date: Fri, 24 Jun 2016 13:24:10 +0200 Subject: [PATCH] Add clang-format markers around fragile header inclusions. --- Source/Core/Core/HW/WiimoteReal/IOWin.cpp | 15 +++++++++------ 1 file changed, 9 insertions(+), 6 deletions(-) diff --git a/Source/Core/Core/HW/WiimoteReal/IOWin.cpp b/Source/Core/Core/HW/WiimoteReal/IOWin.cpp index bf0c70a906..e57d549d94 100644 --- a/Source/Core/Core/HW/WiimoteReal/IOWin.cpp +++ b/Source/Core/Core/HW/WiimoteReal/IOWin.cpp @@ -9,15 +9,18 @@ #include #include #include + +// clang-format off #include // The following Windows headers must be included AFTER windows.h. -#include //NOLINT -#include //NOLINT +#include +#include +#include // initguid.h must be included before Devpkey.h -#include //NOLINT -#include //NOLINT -#include //NOLINT -#include //NOLINT +#include +#include +#include +// clang-format on #include "Common/CommonFuncs.h" #include "Common/CommonTypes.h"