summaryrefslogtreecommitdiff
path: root/Source
diff options
context:
space:
mode:
authorPierre Bourdon <delroth@gmail.com>2016-06-24 13:24:10 +0200
committerPierre Bourdon <delroth@gmail.com>2016-06-24 13:24:10 +0200
commit2fdfacd6d92bf9e8dc6f1b77cbac59eaf8771f28 (patch)
tree36f9fcd131530cd4a7a3818e0aa1e59f85d507e1 /Source
parent3af8f7147256f8bfe1b3bffa7828e5b9ce52ce58 (diff)
Add clang-format markers around fragile header inclusions.
Diffstat (limited to 'Source')
-rw-r--r--Source/Core/Core/HW/WiimoteReal/IOWin.cpp15
1 files 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 <hidsdi.h>
#include <unordered_map>
#include <unordered_set>
+
+// clang-format off
#include <windows.h>
// The following Windows headers must be included AFTER windows.h.
-#include <BluetoothAPIs.h> //NOLINT
-#include <Cfgmgr32.h> //NOLINT
+#include <BluetoothAPIs.h>
+#include <Cfgmgr32.h>
+#include <initguid.h>
// initguid.h must be included before Devpkey.h
-#include <Devpkey.h> //NOLINT
-#include <dbt.h> //NOLINT
-#include <initguid.h> //NOLINT
-#include <setupapi.h> //NOLINT
+#include <Devpkey.h>
+#include <dbt.h>
+#include <setupapi.h>
+// clang-format on
#include "Common/CommonFuncs.h"
#include "Common/CommonTypes.h"