lint: add include sorting config to clang-format (#1517)

This commit is contained in:
Tyler Wilding
2022-06-22 23:37:46 -04:00
committed by GitHub
parent b3f2b81481
commit 2d595c1ac0
501 changed files with 2085 additions and 1264 deletions
+13 -9
View File
@@ -4,28 +4,32 @@
* DONE!
*/
#include <cstring>
#include "kboot.h"
#include <chrono>
#include <cstring>
#include <stdio.h>
#include <stdlib.h>
#include <thread>
#include "common/common_types.h"
#include "common/util/Timer.h"
#include "game/common/game_common_types.h"
#include "game/sce/libscf.h"
#include "kboot.h"
#include "klisten.h"
#include "kmachine.h"
#include "kprint.h"
#include "kscheme.h"
#include "ksocket.h"
#include "klisten.h"
#include "kprint.h"
#include "common/common_types.h"
#include "common/util/Timer.h"
#include "game/common/game_common_types.h"
#include "game/sce/libscf.h"
#ifdef _WIN32
#define NOMINMAX
#define WIN32_LEAN_AND_MEAN
#include "Windows.h"
#include <io.h>
#include "Windows.h"
#elif __linux__
#include <unistd.h>
#endif