Skip to content

Commit

Permalink
fix compile error in tconsole
Browse files Browse the repository at this point in the history
  • Loading branch information
lionkor committed Dec 5, 2023
1 parent 162e1dc commit 6f125e0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/TConsole.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@
#include "TLuaEngine.h"

#include <ctime>
#include <mutex>
#include <sstream>

static inline bool StringStartsWith(const std::string& What, const std::string& StartsWith) {
Expand Down Expand Up @@ -353,7 +354,6 @@ void TConsole::Command_Settings(const std::string&, const std::vector<std::strin
if (!EnsureArgsCount(args, 1, 2)) {
return;
}

}

void TConsole::Command_Say(const std::string& FullCmd) {
Expand Down

0 comments on commit 6f125e0

Please sign in to comment.