Fix compile error

This commit is contained in:
Kawe Mazidjatari 2022-07-30 00:43:40 +02:00
parent 83236940fa
commit 55c5048951
2 changed files with 2 additions and 2 deletions

View File

@ -11,7 +11,7 @@
// $NoKeywords: $ // $NoKeywords: $
//============================================================================= //=============================================================================
#include <string.h> #include "core/stdafx.h"
#include "characterset.h" #include "characterset.h"
// memdbgon must be the last include file in a .cpp file!!! // memdbgon must be the last include file in a .cpp file!!!

View File

@ -58,7 +58,7 @@ private:
}; };
public: public:
CCommand() = delete; CCommand();
CCommand(int nArgC, const char** ppArgV, cmd_source_t source); CCommand(int nArgC, const char** ppArgV, cmd_source_t source);
bool Tokenize(const char* pCommand, cmd_source_t source, characterset_t* pBreakSet); bool Tokenize(const char* pCommand, cmd_source_t source, characterset_t* pBreakSet);