From 55c5048951a6d3945138a7c9072c47ab417f4f8c Mon Sep 17 00:00:00 2001 From: Kawe Mazidjatari <48657826+Mauler125@users.noreply.github.com> Date: Sat, 30 Jul 2022 00:43:40 +0200 Subject: [PATCH] Fix compile error --- r5dev/tier1/characterset.cpp | 2 +- r5dev/tier1/cmd.h | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/r5dev/tier1/characterset.cpp b/r5dev/tier1/characterset.cpp index 62588144..97bb377f 100644 --- a/r5dev/tier1/characterset.cpp +++ b/r5dev/tier1/characterset.cpp @@ -11,7 +11,7 @@ // $NoKeywords: $ //============================================================================= -#include +#include "core/stdafx.h" #include "characterset.h" // memdbgon must be the last include file in a .cpp file!!! diff --git a/r5dev/tier1/cmd.h b/r5dev/tier1/cmd.h index cbd99a1e..cfeaa450 100644 --- a/r5dev/tier1/cmd.h +++ b/r5dev/tier1/cmd.h @@ -58,7 +58,7 @@ private: }; public: - CCommand() = delete; + CCommand(); CCommand(int nArgC, const char** ppArgV, cmd_source_t source); bool Tokenize(const char* pCommand, cmd_source_t source, characterset_t* pBreakSet);