Updating the conversation stuff
This commit is contained in:
@@ -16,10 +16,8 @@ using namespace std::chrono;
|
||||
using namespace ts;
|
||||
using namespace ts::server;
|
||||
|
||||
extern ts::server::InstanceHandler* serverInstance;
|
||||
|
||||
constexpr unsigned int string_hash(const char* str, int h = 0) {
|
||||
return !str[h] ? 5381 : (string_hash(str, h + 1) * 33) ^ str[h];
|
||||
return !str[h] ? 5381 : (string_hash(str, h + 1U) * 33U) ^ str[h];
|
||||
}
|
||||
|
||||
CommandResult QueryClient::handleCommand(Command& cmd) {
|
||||
|
||||
Reference in New Issue
Block a user