normalize includes: common

This commit is contained in:
brainiac
2025-12-17 09:32:44 -08:00
parent 33d9f9956b
commit 0a1b9a9ebb
295 changed files with 1592 additions and 2009 deletions
+8 -12
View File
@@ -18,14 +18,16 @@
*
*/
#ifndef EQEMU_LOGSYS_H
#define EQEMU_LOGSYS_H
#pragma once
#include <iostream>
#include <fstream>
#include <cstdio>
#include <functional>
#include "common/types.h"
#include "fmt/format.h"
#include <algorithm>
#include <cstdio>
#include <fstream>
#include <functional>
#include <iostream>
#ifdef _WIN32
#ifdef utf16_to_utf8
@@ -33,10 +35,6 @@
#endif
#endif
#include <fmt/format.h>
#include <fmt/ranges.h>
#include "types.h"
namespace Logs {
enum DebugLevel {
General = 1, // 1 - Low-Level general debugging, useful info on single line
@@ -463,5 +461,3 @@ void OutF(
do { \
ls->Out(debug_level, log_category, file, func, line, fmt::format(formatStr, ##__VA_ARGS__).c_str()); \
} while(0)
#endif