From d24d873a40c3c307e8cdb14ab73d4734cafef149 Mon Sep 17 00:00:00 2001 From: a2x <45197573+a2x@users.noreply.github.com> Date: Sun, 3 Sep 2023 20:12:16 +1000 Subject: [PATCH] Sort includes alphabetically --- include/process.hpp | 2 +- src/main.cpp | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/include/process.hpp b/include/process.hpp index ecd9d07..27de954 100644 --- a/include/process.hpp +++ b/include/process.hpp @@ -1,8 +1,8 @@ #pragma once +#include <cstdint> #include <optional> #include <string_view> -#include <cstdint> namespace process { bool attach(std::string_view process_name); diff --git a/src/main.cpp b/src/main.cpp index ea84b6a..549fb07 100644 --- a/src/main.cpp +++ b/src/main.cpp @@ -1,8 +1,8 @@ #include "sdk/sdk.hpp" #include <filesystem> -#include <fstream> #include <format> +#include <fstream> void generate_header_for_type_scope(const sdk::CSchemaSystemTypeScope* type_scope) { if (type_scope == nullptr)