diff options
author | p0358 <p0358@users.noreply.github.com> | 2023-02-14 15:04:42 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-02-14 14:04:42 +0000 |
commit | 9b1e2a0f4895f48b6a8169bf1b571294b2ad4c54 (patch) | |
tree | dcddfc464a83211a6922a3b2a43ded293b4303b9 /NorthstarDLL/scripts/server | |
parent | 95b41b6f8cc612953eafd7f8b6b40124e1590bc7 (diff) | |
download | NorthstarLauncher-9b1e2a0f4895f48b6a8169bf1b571294b2ad4c54.tar.gz NorthstarLauncher-9b1e2a0f4895f48b6a8169bf1b571294b2ad4c54.zip |
Force-include `pch.h` to all files, remove explicit includes (#393)
* force-include "pch.h" in all units, as it will error if it's not included anyways
* remove #include "pch.h" from all files as it's not needed anymore now
* fix size of NSUserAgent to be consistent (it's 256 in version.cpp, caused compile error)
* Re-add explicit pch.h include to pch.cpp (and ran clang-format)
* drop pch.h inclusion from new files
Diffstat (limited to 'NorthstarDLL/scripts/server')
-rw-r--r-- | NorthstarDLL/scripts/server/miscserverfixes.cpp | 1 | ||||
-rw-r--r-- | NorthstarDLL/scripts/server/miscserverscript.cpp | 1 | ||||
-rw-r--r-- | NorthstarDLL/scripts/server/scriptuserinfo.cpp | 1 |
3 files changed, 0 insertions, 3 deletions
diff --git a/NorthstarDLL/scripts/server/miscserverfixes.cpp b/NorthstarDLL/scripts/server/miscserverfixes.cpp index 4feca505..48c2c111 100644 --- a/NorthstarDLL/scripts/server/miscserverfixes.cpp +++ b/NorthstarDLL/scripts/server/miscserverfixes.cpp @@ -1,4 +1,3 @@ -#include "pch.h" ON_DLL_LOAD("server.dll", MiscServerFixes, (CModule module)) { diff --git a/NorthstarDLL/scripts/server/miscserverscript.cpp b/NorthstarDLL/scripts/server/miscserverscript.cpp index b58bdfda..06e9fda0 100644 --- a/NorthstarDLL/scripts/server/miscserverscript.cpp +++ b/NorthstarDLL/scripts/server/miscserverscript.cpp @@ -1,4 +1,3 @@ -#include "pch.h" #include "squirrel/squirrel.h" #include "masterserver/masterserver.h" #include "server/auth/serverauthentication.h" diff --git a/NorthstarDLL/scripts/server/scriptuserinfo.cpp b/NorthstarDLL/scripts/server/scriptuserinfo.cpp index 68baac0e..6b26ed61 100644 --- a/NorthstarDLL/scripts/server/scriptuserinfo.cpp +++ b/NorthstarDLL/scripts/server/scriptuserinfo.cpp @@ -1,4 +1,3 @@ -#include "pch.h" #include "squirrel/squirrel.h" #include "engine/r2engine.h" #include "server/r2server.h" |