Treewide: Adjust order of includes

This commit is contained in:
Pokechu22
2021-12-09 18:22:16 -08:00
parent 9304fe7124
commit 2025763420
214 changed files with 430 additions and 252 deletions

View File

@ -3,6 +3,8 @@
// Most of the code in this file was shamelessly ripped from libcdio With minor adjustments
#include "Common/CDUtils.h"
#include <algorithm>
#include <cstdlib>
#include <string>
@ -10,11 +12,6 @@
#include <fmt/format.h>
#include "Common/CDUtils.h"
#include "Common/Common.h"
#include "Common/CommonTypes.h"
#include "Common/StringUtil.h"
#ifdef _WIN32
#include <windows.h>
#elif __APPLE__
@ -36,6 +33,10 @@
#include <linux/cdrom.h>
#endif
#include "Common/Common.h"
#include "Common/CommonTypes.h"
#include "Common/StringUtil.h"
namespace Common
{
#ifdef _WIN32