No longer need to //clang-format off for Windows headers

This commit is contained in:
Michael Maltese 2017-01-23 00:53:51 -08:00
parent 713ec5ffd5
commit 0bc40cacda
2 changed files with 6 additions and 8 deletions

View File

@ -9,17 +9,17 @@
#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>
#include <Cfgmgr32.h>
#include <hidsdi.h>
#include <initguid.h>
// initguid.h must be included before Devpkey.h
#include <Devpkey.h>
#include <dbt.h>
#include <hidsdi.h>
#include <setupapi.h>
// initguid.h must be included before Devpkey.h
// clang-format off
#include <initguid.h>
#include <Devpkey.h>
// clang-format on
#include "Common/CommonFuncs.h"

View File

@ -6,10 +6,8 @@
#include <unordered_set>
#include <vector>
// clang-format off
#include <Windows.h>
#include <SetupAPI.h>
// clang-format on
namespace ciface
{